about summary refs log tree commit diff
path: root/tests/ui/suggestions/missing-impl-trait-block-but-not-ascii.rs
blob: ddb6bd1e90209445ee013a41d64f6022d5406b26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// issue#126764

struct S;

trait T {
    fn f();
}
impl T for S
//~^ ERROR: unknown start of token
//~| ERROR: expected `{}`
//~| ERROR: not all trait items implemented, missing: `f`

fn main() {}