mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 10:18:25 +00:00

Additionally, remove unused `tests/ui/auxiliary/svh-*` crates that are duplicates of `tests/ui/svh/auxiliary/svh-*`.
7 lines
225 B
Rust
7 lines
225 B
Rust
//! 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() {}
|