2025-07-01 20:20:14 +05:00
|
|
|
//! Check that `super` keyword used at the crate root (top-level) results in a compilation error
|
|
|
|
|
//! as there is no parent module to resolve.
|
|
|
|
|
|
2020-01-10 14:36:22 +00:00
|
|
|
use super::f; //~ ERROR there are too many leading `super` keywords
|
2012-12-13 13:05:22 -08:00
|
|
|
|
2025-07-01 20:20:14 +05:00
|
|
|
fn main() {}
|