mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
263 B
Rust
12 lines
263 B
Rust
// Check that different const types are different.
|
|
#![feature(adt_const_params)]
|
|
#![allow(incomplete_features)]
|
|
|
|
struct Const<const V: [usize; 1]> {}
|
|
|
|
fn main() {
|
|
let mut x = Const::<{ [3] }> {};
|
|
x = Const::<{ [4] }> {};
|
|
//~^ ERROR mismatched types
|
|
}
|