mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
11 lines
185 B
Plaintext
11 lines
185 B
Plaintext
interface TestProto
|
|
{
|
|
}
|
|
struct Test
|
|
{
|
|
void* abc;
|
|
}
|
|
fn void main()
|
|
{
|
|
TestProto z = mem::alloc(Test?); // #error: "$Type.kindof != OPTIONAL" violated: 'Expected a non-optional type'.
|
|
} |