blob: 9a8c9aab72828425023b84eaf78c29dac3f887a1 [file] [edit]
#![allow(unused_imports)]
mod foo {}
use foo::{
::bar,
//~^ ERROR: crate root in paths can only be used in start position
super::bar,
//~^ ERROR: `super` in paths can only be used in start position
self::bar,
//~^ ERROR: `self` in paths can only be used in start position
};
fn main() {}