Files
rust/tests/ui/issues/issue-9906.rs

12 lines
177 B
Rust
Raw Normal View History

// run-pass
// aux-build:issue-9906.rs
// pretty-expanded FIXME #23616
extern crate issue_9906 as testmod;
pub fn main() {
testmod::foo();
2015-01-25 22:05:03 +01:00
testmod::FooBar::new(1);
}