]> git.lizzy.rs Git - rust.git/blob - tests/target/associated_type_defaults.rs
Merge pull request #3576 from rchaser53/issue-3567
[rust.git] / tests / target / associated_type_defaults.rs
1 #![feature(associated_type_defaults)]
2 trait Foo {
3     type Bar = ();
4 }