]> git.lizzy.rs Git - rust.git/blob - src/test/ui/hidden-rt-injection.rs
Auto merge of #75936 - sdroege:chunks-exact-construction-bounds-check, r=nagisa
[rust.git] / src / test / ui / hidden-rt-injection.rs
1 // This is testing that users can't access the runtime crate.
2
3 mod m {
4     // The rt has been called both 'native' and 'rt'
5     use native; //~ ERROR unresolved import
6 }
7
8 fn main() { }