2024-02-16 20:02:50 +00:00
|
|
|
//@ aux-build:recursive_reexports.rs
|
2016-06-29 00:18:07 +00:00
|
|
|
|
2016-12-22 08:27:26 +00:00
|
|
|
extern crate recursive_reexports;
|
|
|
|
|
2019-08-04 02:07:35 +03:00
|
|
|
fn f() -> recursive_reexports::S {} //~ ERROR cannot find type `S` in crate `recursive_reexports`
|
2016-06-29 00:18:07 +00:00
|
|
|
|
|
|
|
fn main() {}
|