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-21 19:58:34 -05:00
trait Foo = Default;
2018-11-27 03:56:36 -06:00
//~^ ERROR trait aliases are experimental
2018-10-21 19:58:34 -05:00
fn main() {}