]> git.proxmox.com Git - rustc.git/blob - src/test/ui/rust-2018/uniform-paths/cross-crate.rs
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / rust-2018 / uniform-paths / cross-crate.rs
1 // edition:2018
2 // aux-build:cross-crate.rs
3
4 extern crate cross_crate;
5 use cross_crate::*;
6
7 #[built_in_attr] //~ ERROR cannot use a built-in attribute through an import
8 #[tool_mod::skip] //~ ERROR cannot use a tool module through an import
9 //~| ERROR cannot use a tool module through an import
10 fn main() {
11 let _: built_in_type; // OK
12 }