Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
imports
/
issue-55457.rs
blob: fd0829402558745dc2e2b18e1983fab7e959940b [
file
] [
log
] [
blame
] [
edit
]
use
NonExistent
;
//~ ERROR unresolved import `NonExistent`
use
non_existent
::
non_existent
;
//~ ERROR unresolved import `non_existent`
#[
non_existent
]
#[
derive
(
NonExistent
)]
struct
S
;
fn
main
()
{}