2014-07-25 10:01:42 +10:00
|
|
|
// compile-flags:--test
|
|
|
|
|
|
|
|
// the `--test` harness creates modules with these textual names, but
|
|
|
|
// they should be inaccessible from normal code.
|
2014-08-12 19:25:05 -07:00
|
|
|
use __test as x; //~ ERROR unresolved import `__test`
|
|
|
|
use __test_reexports as y; //~ ERROR unresolved import `__test_reexports`
|
2014-07-25 10:01:42 +10:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn baz() {}
|