mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			225 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			225 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| fn main() {
 | |
|     0b101010f64;
 | |
|     //~^ ERROR binary float literal is not supported
 | |
|     0b101.010;
 | |
|     //~^ ERROR binary float literal is not supported
 | |
|     0b101p4f64;
 | |
|     //~^ ERROR invalid suffix `p4f64` for number literal
 | |
| }
 | 
