mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
13 lines
206 B
D
13 lines
206 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/diag8787.d(10): Error: function `diag8787.I.f` function body only allowed in `final` functions in interface `I`
|
|
---
|
|
*/
|
|
|
|
interface I
|
|
{
|
|
void f() { }
|
|
}
|
|
|
|
void main() {}
|