mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
16 lines
245 B
D
16 lines
245 B
D
// https://issues.dlang.org/show_bug.cgi?id=23108
|
|
/* TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail23108a.d(9): Error: undefined identifier `_xopEquals` in module `object`
|
|
---
|
|
*/
|
|
module object;
|
|
|
|
struct Interface
|
|
{
|
|
void[] vtbl;
|
|
}
|
|
|
|
class TypeInfo
|
|
{
|
|
}
|