mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
17 lines
380 B
Rust
17 lines
380 B
Rust
pub fn foo<Const N: u8>() {}
|
|
//~^ ERROR `const` keyword was mistyped as `Const`
|
|
|
|
pub fn bar<Const>() {}
|
|
// OK
|
|
|
|
pub fn baz<Const N: u8, T>() {}
|
|
//~^ ERROR `const` keyword was mistyped as `Const`
|
|
|
|
pub fn qux<T, Const N: u8>() {}
|
|
//~^ ERROR `const` keyword was mistyped as `Const`
|
|
|
|
pub fn quux<T, Const N: u8, U>() {}
|
|
//~^ ERROR `const` keyword was mistyped as `Const`
|
|
|
|
fn main() {}
|