mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
21 lines
377 B
D
21 lines
377 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/ice9338.d(13): Error: value of `this` is not known at compile time
|
|
fail_compilation/ice9338.d(14): Error: value of `this` is not known at compile time
|
|
---
|
|
*/
|
|
|
|
class Foo
|
|
{
|
|
void test()
|
|
{
|
|
enum members1 = makeArray();
|
|
enum members2 = this.makeArray();
|
|
}
|
|
|
|
string[] makeArray()
|
|
{
|
|
return ["a"];
|
|
}
|
|
}
|