]> git.proxmox.com Git - rustc.git/blob - tests/ui/consts/auxiliary/issue-63226.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / consts / auxiliary / issue-63226.rs
1 pub struct VTable{
2 state:extern "C" fn(),
3 }
4
5 impl VTable{
6 pub const fn vtable()->&'static VTable{
7 Self::VTABLE
8 }
9
10 const VTABLE: &'static VTable =
11 &VTable{state};
12 }
13
14 extern "C" fn state() {}