mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
12 lines
277 B
Rust
12 lines
277 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();
|
|
|
|
fn main() {}
|