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

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

12 lines
180 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 21:05:03 +00:00
testmod::FooBar::new(1);
}