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

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

11 lines
139 B
Rust
Raw Permalink Normal View History

//@ run-pass
//@ aux-build:issue-11225-1.rs
extern crate issue_11225_1 as foo;
pub fn main() {
2015-01-25 21:05:03 +00:00
foo::foo(1);
foo::foo_ufcs(1);
}