blob: 916af694dda923ad27f89986fc534021b5606c3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// { dg-do assemble }
// prms-id: 5274
class VHDLIdentifier;
class VHDLPackageProtoRep {
public:
int thing();
private:
virtual VHDLIdentifier &actual_name() ;
};
extern void form(const char *format, ... );
int
VHDLPackageProtoRep::thing()
{
form("package `%s'", (char *)actual_name()); // { dg-error "" } can't convert from incomplete type
return 0;
}
|