DEBSOURCES
Skip Quicknav
sources / rustc / 1.41.1%2Bdfsg1-1~deb10u1 / src / test / ui / error-codes / E0192.rs
123456789101112
#![feature(optin_builtin_traits)] trait Trait { type Bar; } struct Foo; impl !Trait for Foo { } //~ ERROR E0192 fn main() { }