Files
c3c/test/test_suite/dynamic/dynamic_inherit_deep.c3t
2024-08-11 22:48:21 +02:00

18 lines
271 B
Plaintext

module abc;
interface AstNode {
fn void free();
fn double get_span();
fn void dump(int depth);
}
interface AstBodyStatement : AstNode {
}
interface AstExpression : /* AstNode,*/ AstBodyStatement {
}
fn void main()
{
AstExpression a = null;
a.dump(100);
}