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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
184 B
Rust
Raw Normal View History

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