blob: 05b26465c5b0c395ba57e625bde6abb6a5b47161 [file] [log] [blame]
Deadbeefff24ac42021-08-25 14:30:091#![feature(const_trait_impl)]
2
3struct S;
4trait T {}
5
6impl ~const T for S {}
7//~^ ERROR expected a trait, found type
8
9fn main() {}