view tests/mini/dottypeexp.d @ 787:5d2ac0c2dd46

Fix StdCall selection.
author Christian Kamm <kamm incasoftware de>
date Tue, 25 Nov 2008 17:15:02 +0100
parents 216b14b9a773
children
line wrap: on
line source

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(); }