mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
12 lines
169 B
C
12 lines
169 B
C
module foo;
|
|
|
|
extern func void test_virtual3(virtual* y);
|
|
|
|
interface Baz
|
|
{
|
|
func void open();
|
|
func int close();
|
|
}
|
|
|
|
extern func void test_virtual2(virtual Baz* z);
|