mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
5 lines
204 B
D
5 lines
204 B
D
extern(C) int printf(char*, ...);
|
|
template Foo() { void test() { printf("test\n"); typeof(this).whee(); } }
|
|
class Bar { void whee() { printf("whee\n"); } mixin Foo!(); }
|
|
void main() { (new Bar).test(); }
|