mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
13 lines
277 B
Rust
13 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() {}
|