about summary refs log tree commit diff
path: root/tests/ui/modules/super-at-crate-root.rs
blob: d605dc0cccb334a80c9a5a7eb47eaf44db43e5a6 (plain)
1
2
3
4
5
6
//! 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() {}