blob: 26d15fb04734b7743199acac24f937c39fc1c276 (
plain)
1
2
3
4
5
6
7
|
//@ aux-build:recursive_reexports.rs
extern crate recursive_reexports;
fn f() -> recursive_reexports::S {} //~ ERROR cannot find type `S` in crate `recursive_reexports`
fn main() {}
|