]> git.lizzy.rs Git - rust.git/blob - tests/target/associated_type_defaults.rs
do not format a code block in documentation if it is annotated with ignore or text...
[rust.git] / tests / target / associated_type_defaults.rs
1 #![feature(associated_type_defaults)]
2 trait Foo {
3     type Bar = ();
4 }