aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.dg/gdc254.d
blob: c0f6e560f50ec1c54c1a8ec0f75503eed458d788 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// https://bugzilla.gdcproject.org/show_bug.cgi?id=254
// { dg-options "-I $srcdir/gdc.dg" }
// { dg-shouldfail "interface function is not implemented" }
// { dg-do compile }

import imports.gdc254a;

interface A254
{
    void F();
}

class C254 : B254, A254  // { dg-error "interface function '\[^\n\r]*' is not implemented" }
{
}