2024-02-16 20:02:50 +00:00
|
|
|
//@ run-pass
|
|
|
|
|
//@ aux-build:issue-9906.rs
|
2013-10-21 10:37:36 -07:00
|
|
|
|
2015-03-22 13:13:15 -07:00
|
|
|
|
2015-03-27 10:22:44 -07:00
|
|
|
extern crate issue_9906 as testmod;
|
2013-10-21 10:37:36 -07:00
|
|
|
|
2014-01-03 15:30:54 -08:00
|
|
|
pub fn main() {
|
2013-10-21 10:37:36 -07:00
|
|
|
testmod::foo();
|
2015-01-25 22:05:03 +01:00
|
|
|
testmod::FooBar::new(1);
|
2013-10-21 10:37:36 -07:00
|
|
|
}
|