Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
modules
/
super-at-crate-root.rs
blob: d605dc0cccb334a80c9a5a7eb47eaf44db43e5a6 [
file
] [
log
] [
blame
]
//! Check that `super` keyword used at the crate root (top-level) results in a compilation error
//! as there is no parent module to resolve.
use
super
::
f
;
//~ ERROR there are too many leading `super` keywords
fn
main
()
{}