8 lines
118 B
Rust
Raw Normal View History

// check-pass
2020-07-10 17:50:03 -04:00
trait ValidTrait {}
/// This has docs
pub fn f() -> impl ValidTrait {
Vec::<DoesNotExist>::new()
}