rust/tests/ui/modules/super-at-crate-root.rs
Kivooeo 98934707eb cleaned up some tests
Additionally, remove unused `tests/ui/auxiliary/svh-*` crates that are duplicates of `tests/ui/svh/auxiliary/svh-*`.
2025-07-13 00:03:31 +05:00

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() {}