Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
#![feature(const_trait_impl)]
struct S;
trait T {}
impl ~const T for S {}
//~^ ERROR expected a trait, found type
fn main() {}