mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
19 lines
210 B
D
19 lines
210 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail38.d(12): Error: `super` is only allowed in non-static class member functions
|
|
---
|
|
*/
|
|
|
|
int x;
|
|
|
|
void test()
|
|
{
|
|
super.x = 2;
|
|
}
|
|
|
|
int main()
|
|
{
|
|
test();
|
|
return 0;
|
|
}
|