2019-08-14 23:56:57 -05:00
|
|
|
// aux-build:issue-63226.rs
|
|
|
|
// compile-flags:--extern issue_63226
|
|
|
|
// edition:2018
|
|
|
|
// build-pass
|
2019-08-15 02:59:03 -05:00
|
|
|
// A regression test for issue #63226.
|
|
|
|
// Checks if `const fn` is marked as reachable.
|
2019-08-14 23:56:57 -05:00
|
|
|
|
|
|
|
use issue_63226::VTable;
|
|
|
|
|
|
|
|
static ICE_ICE:&'static VTable=VTable::vtable();
|
|
|
|
|
|
|
|
fn main() {}
|