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