d94f6576dd
also extend the const fn reachability test
15 lines
381 B
Rust
15 lines
381 B
Rust
//@ 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();
|
|
static MORE_ICE:&'static VTable=VTable::VTABLE2;
|
|
static MORE_ICE3:&'static VTable=issue_63226::VTABLE3;
|
|
|
|
fn main() {}
|