mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
178 B
Rust
12 lines
178 B
Rust
fn foo<const X: usize, const Y: usize>() -> usize {
|
|
0
|
|
}
|
|
|
|
fn main() {
|
|
foo::<0>();
|
|
//~^ ERROR function takes 2
|
|
|
|
foo::<0, 0, 0>();
|
|
//~^ ERROR function takes 2
|
|
}
|