Files
c3c/test/test_suite/any/interface_ptr.c3

9 lines
83 B
Plaintext

interface Abc {}
fn void main()
{
Abc y;
typeid z = y.type;
void* x = y.ptr;
}