2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2013-12-31 14:40:10 -06:00
|
|
|
// aux-build:issue-11225-2.rs
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2015-03-27 12:22:44 -05:00
|
|
|
extern crate issue_11225_2 as foo;
|
2013-12-31 14:40:10 -06:00
|
|
|
|
2014-01-03 17:30:54 -06:00
|
|
|
pub fn main() {
|
2015-01-25 15:05:03 -06:00
|
|
|
foo::foo(1);
|
2015-11-05 09:17:33 -06:00
|
|
|
foo::foo_ufcs(1);
|
2013-12-31 14:40:10 -06:00
|
|
|
}
|