summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/issue-63226.rs
blob: deec44990086fc9add2e87570d87ba67e8e83ca9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// aux-build:issue-63226.rs
// compile-flags:--extern issue_63226
// edition:2018
// build-pass
// A regression test for issue #63226.
// Checks if `const fn` is marked as reachable.

use issue_63226::VTable;

static ICE_ICE:&'static VTable=VTable::vtable();

fn main() {}