]> git.proxmox.com Git - rustc.git/blame - src/test/ui/hidden-rt-injection2.rs
New upstream version 1.49.0+dfsg1
[rustc.git] / src / test / ui / hidden-rt-injection2.rs
CommitLineData
1a4d82fc 1// This is testing that users can't access the runtime crate.
223e47cc 2
1a4d82fc
JJ
3mod m {
4 // The rt has been called both 'native' and 'rt'
5 use rt; //~ ERROR unresolved import
223e47cc
LB
6}
7
8fn main() { }