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
169 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-25 15:05:03 -06:00
foo::foo(1);
foo::foo_ufcs(1);
}