rust/src/test/ui/assoc-inherent.rs
2019-01-08 23:53:19 +00:00

10 lines
228 B
Rust

// Test associated types are, until #8995 is implemented, forbidden in inherent impls.
struct Foo;
impl Foo {
type Bar = isize; //~ERROR associated types are not yet supported in inherent impls (see #8995)
}
fn main() {}