rust/src/test/ui/consts/auxiliary/issue-63226.rs

15 lines
214 B
Rust
Raw Normal View History

2019-08-14 23:56:57 -05:00
pub struct VTable{
state:extern fn(),
}
impl VTable{
pub const fn vtable()->&'static VTable{
Self::VTABLE
}
const VTABLE: &'static VTable =
&VTable{state};
}
extern fn state() {}