Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
imports
/
issue-55457.rs
blob: fd0829402558745dc2e2b18e1983fab7e959940b [
file
] [
log
] [
blame
]
use
NonExistent
;
//~ ERROR unresolved import `NonExistent`
use
non_existent
::
non_existent
;
//~ ERROR unresolved import `non_existent`
#[
non_existent
]
#[
derive
(
NonExistent
)]
struct
S
;
fn
main
()
{}