rust/tests/ui/parser/impl-on-unsized-typo.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
114 B
Rust
Raw Normal View History

2023-05-10 23:00:47 +00:00
trait Tr {}
impl<T ?Sized> Tr for T {}
//~^ ERROR expected one of `,`, `:`, `=`, or `>`, found `?`
fn main() {}