rust/src/test/ui/assoc-inherent.rs

10 lines
228 B
Rust
Raw Normal View History

2019-01-08 17:50:51 -06:00
// Test associated types are, until #8995 is implemented, forbidden in inherent impls.
struct Foo;
impl Foo {
2019-01-08 17:50:51 -06:00
type Bar = isize; //~ERROR associated types are not yet supported in inherent impls (see #8995)
}
fn main() {}