mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			306 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			306 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // edition:2018
 | |
| // aux-build:external_macro.rs
 | |
| 
 | |
| // Ensure that CONST_ERR lint errors
 | |
| // are not silenced in external macros.
 | |
| // https://github.com/rust-lang/rust/issues/65300
 | |
| 
 | |
| extern crate external_macro;
 | |
| use external_macro::static_assert;
 | |
| 
 | |
| fn main() {
 | |
|     static_assert!(2 + 2 == 5); //~ ERROR constant
 | |
| }
 | 
