d: Merge upstream dmd, druntime 26f049fb26, phobos 330d6a4fd.
[official-gcc.git] / gcc / testsuite / gdc.test / compilable / ice13920.d
bloba4540d1eac87d5bd1be2898117eedbdc491949a1
1 // REQUIRED_ARGS: -o-
2 // PERMUTE_ARGS:
4 class Foo
6 void foo()
8 foreach (f; __traits(getOverloads, typeof(this), "bar"))
10 auto dg = &f;
13 foreach (f; __traits(getVirtualMethods, typeof(this), "bar"))
15 auto dg = &f;
19 uint bar() { return 0; }