]> git.lizzy.rs Git - rust.git/blob - tests/ui/reachable/issue-11225-1.rs
Auto merge of #101138 - Rejyr:diagnostic-migration-rustc-lint-pt2, r=davidtwco
[rust.git] / tests / ui / reachable / issue-11225-1.rs
1 // run-pass
2 // aux-build:issue-11225-1.rs
3
4 // pretty-expanded FIXME #23616
5
6 extern crate issue_11225_1 as foo;
7
8 pub fn main() {
9     foo::foo(1);
10     foo::foo_ufcs(1);
11 }