summaryrefslogtreecommitdiffstats
path: root/tests/ui/rfcs/rfc-2126-extern-absolute-paths/not-allowed.rs
blob: acb4bbebe7f532a531a9076fb3db4495ea59deef (plain)
1
2
3
4
5
6
7
8
9
// edition:2018

// Tests that arbitrary crates (other than `core`, `std` and `meta`)
// aren't allowed without `--extern`, even if they're in the sysroot.
use alloc; //~ ERROR unresolved import `alloc`
use test; // OK, imports the built-in attribute macro `#[test]`, but not the `test` crate.
use proc_macro; // OK, imports the built-in `proc_macro` attribute, but not the `proc_macro` crate.

fn main() {}