summaryrefslogtreecommitdiffstats
path: root/tests/ui/const-generics/invalid-const-arg-for-type-param.rs
blob: bf10f471dc51cda47a4a4e57efb8a25e236c9e87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::convert::TryInto;

struct S;

fn main() {
    let _: u32 = 5i32.try_into::<32>().unwrap();
    //~^ ERROR method takes

    S.f::<0>();
    //~^ ERROR no method named `f`

    S::<0>;
    //~^ ERROR struct takes 0
}