about summary refs log tree commit diff
path: root/src/test/ui/const-generics/different_byref_simple.rs
blob: b48189fc2cba9210690ec0274ac89c4264c978e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Check that different const types are different.
// revisions: full min

#![cfg_attr(full, feature(const_generics))]
#![cfg_attr(full, allow(incomplete_features))]

struct ConstUsize<const V: usize> {}

fn main() {
    let mut u = ConstUsize::<3> {};
    u = ConstUsize::<4> {};
    //~^ ERROR mismatched types
}