rust/tests/ui/recursion/recursive-reexports.rs

8 lines
184 B
Rust
Raw Normal View History

2016-06-29 00:18:07 +00:00
// aux-build:recursive_reexports.rs
2016-12-22 08:27:26 +00:00
extern crate recursive_reexports;
fn f() -> recursive_reexports::S {} //~ ERROR cannot find type `S` in crate `recursive_reexports`
2016-06-29 00:18:07 +00:00
fn main() {}