rust/tests/ui/reachable/issue-11225-2.rs

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

12 lines
172 B
Rust
Raw Normal View History

//@ run-pass
//@ aux-build:issue-11225-2.rs
//@ pretty-expanded FIXME #23616
extern crate issue_11225_2 as foo;
pub fn main() {
2015-01-26 05:05:03 +08:00
foo::foo(1);
foo::foo_ufcs(1);
}