mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	Except for `simd-intrinsic/`, which has a lot of files containing multiple types like `u8x64` which really are better when hand-formatted. There is a surprising amount of two-space indenting in this directory. Non-trivial changes: - `rustfmt::skip` needed in `debug-column.rs` to preserve meaning of the test. - `rustfmt::skip` used in a few places where hand-formatting read more nicely: `enum/enum-match.rs` - Line number adjustments needed for the expected output of `debug-column.rs` and `coroutine-debug.rs`.
		
			
				
	
	
		
			24 lines
		
	
	
		
			537 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			537 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
//@ compile-flags: -Copt-level=1
 | 
						|
 | 
						|
// References returned by a Frozen pointer type
 | 
						|
// could be marked as "noalias", which caused miscompilation errors.
 | 
						|
// This test runs the most minimal possible code that can reproduce this bug,
 | 
						|
// and checks that noalias does not appear.
 | 
						|
// See https://github.com/rust-lang/rust/issues/46239
 | 
						|
 | 
						|
#![crate_type = "lib"]
 | 
						|
 | 
						|
fn project<T>(x: &(T,)) -> &T {
 | 
						|
    &x.0
 | 
						|
}
 | 
						|
 | 
						|
fn dummy() {}
 | 
						|
 | 
						|
// CHECK-LABEL: @foo(
 | 
						|
// CHECK-NOT: noalias
 | 
						|
#[no_mangle]
 | 
						|
pub fn foo() {
 | 
						|
    let f = (dummy as fn(),);
 | 
						|
    (*project(&f))();
 | 
						|
}
 |