rust/tests/ui/typeck/issue-91450-inner-ty-error.rs

8 lines
237 B
Rust

// Regression test for #91450.
// This test ensures that the compiler does not suggest `Foo<[type error]>` in diagnostic messages.
fn foo() -> Option<_> {} //~ ERROR: [E0308]
//~^ ERROR: the placeholder `_` is not allowed
fn main() {}