summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-38226.rs
blob: 3213e3618a88b44582245d1e6e13477fd7e675f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// run-pass
// This test makes sure that we don't run into a linker error because of the
// middle::reachable pass missing trait methods with default impls.

// aux-build:issue-38226-aux.rs

// Need -Cno-prepopulate-passes to really disable inlining, otherwise the faulty
// code gets optimized out:
// compile-flags: -Cno-prepopulate-passes -Cpasses=name-anon-globals

extern crate issue_38226_aux;

fn main() {
    issue_38226_aux::foo::<()>();
}