Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
0e3ee39c41462652f41993a5610265abea6daa96
/
.
/
src
/
test
/
compile-fail
/
does-nothing.rs
blob: ef7115de02a990e0b5285f82f2f60a52382499b5 [
file
] [
log
] [
blame
]
// error-pattern: unresolved name: this_does_nothing_what_the
fn
main
()
{
log
"doing"
;
this_does_nothing_what_the
;
log
"boing"
;
}