mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	 f0845adb0c
			
		
	
	
		f0845adb0c
		
	
	
	
	
		
			
			```
error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields
  --> $DIR/attempted-access-non-fatal.rs:7:15
   |
LL |     let _ = 2.l;
   |               ^
   |
help: if intended to be a floating point literal, consider adding a `0` after the period and a `f64` suffix
   |
LL -     let _ = 2.l;
LL +     let _ = 2.0f64;
   |
```
		
	
			
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| error: `const` keyword was mistyped as `Const`
 | |
|   --> $DIR/typod-const-in-const-param-def.rs:1:12
 | |
|    |
 | |
| LL | pub fn foo<Const N: u8>() {}
 | |
|    |            ^^^^^
 | |
|    |
 | |
| help: use the `const` keyword (notice the capitalization difference)
 | |
|    |
 | |
| LL - pub fn foo<Const N: u8>() {}
 | |
| LL + pub fn foo<const N: u8>() {}
 | |
|    |
 | |
| 
 | |
| error: `const` keyword was mistyped as `Const`
 | |
|   --> $DIR/typod-const-in-const-param-def.rs:7:12
 | |
|    |
 | |
| LL | pub fn baz<Const N: u8, T>() {}
 | |
|    |            ^^^^^
 | |
|    |
 | |
| help: use the `const` keyword (notice the capitalization difference)
 | |
|    |
 | |
| LL - pub fn baz<Const N: u8, T>() {}
 | |
| LL + pub fn baz<const N: u8, T>() {}
 | |
|    |
 | |
| 
 | |
| error: `const` keyword was mistyped as `Const`
 | |
|   --> $DIR/typod-const-in-const-param-def.rs:10:15
 | |
|    |
 | |
| LL | pub fn qux<T, Const N: u8>() {}
 | |
|    |               ^^^^^
 | |
|    |
 | |
| help: use the `const` keyword (notice the capitalization difference)
 | |
|    |
 | |
| LL - pub fn qux<T, Const N: u8>() {}
 | |
| LL + pub fn qux<T, const N: u8>() {}
 | |
|    |
 | |
| 
 | |
| error: `const` keyword was mistyped as `Const`
 | |
|   --> $DIR/typod-const-in-const-param-def.rs:13:16
 | |
|    |
 | |
| LL | pub fn quux<T, Const N: u8, U>() {}
 | |
|    |                ^^^^^
 | |
|    |
 | |
| help: use the `const` keyword (notice the capitalization difference)
 | |
|    |
 | |
| LL - pub fn quux<T, Const N: u8, U>() {}
 | |
| LL + pub fn quux<T, const N: u8, U>() {}
 | |
|    |
 | |
| 
 | |
| error: aborting due to 4 previous errors
 | |
| 
 |