Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
suggestions
/
missing-impl-trait-block-but-not-ascii.rs
blob: ddb6bd1e90209445ee013a41d64f6022d5406b26 [
file
] [
log
] [
blame
] [
edit
]
// 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
()
{}