mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 21:16:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			263 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			263 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ check-pass
 | |
| //@ aux-build:test-macros.rs
 | |
| //@ compile-flags: -Z span-debug
 | |
| 
 | |
| #![no_std] // Don't load unnecessary hygiene information from std
 | |
| extern crate std;
 | |
| 
 | |
| extern crate test_macros;
 | |
| 
 | |
| #[test_macros::print_attr]
 | |
| fn foo<T>() where T: Copy + {
 | |
| }
 | |
| 
 | |
| fn main() {}
 | 
