rust/tests/ui/feature-gates/feature-gate-trait-alias.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
77 B
Rust
Raw Normal View History

2018-10-22 00:58:34 +00:00
trait Foo = Default;
2018-11-27 09:56:36 +00:00
//~^ ERROR trait aliases are experimental
2018-10-22 00:58:34 +00:00
fn main() {}