mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
25 lines
748 B
D
25 lines
748 B
D
// https://issues.dlang.org/show_bug.cgi?id=22054
|
|
|
|
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail22054.d(23): Error: no property `what` for type `fail22054.exception`
|
|
fail_compilation/fail22054.d(18): `class fail22054.exception` is opaque and has no members.
|
|
fail_compilation/fail22054.d(18): class `exception` defined here
|
|
fail_compilation/fail22054.d(24): Error: no property `what` for type `fail22054.exception2`
|
|
fail_compilation/fail22054.d(19): `struct fail22054.exception2` is opaque and has no members.
|
|
fail_compilation/fail22054.d(19): struct `exception2` defined here
|
|
---
|
|
*/
|
|
|
|
|
|
|
|
|
|
class exception;
|
|
struct exception2;
|
|
|
|
void main ()
|
|
{
|
|
assert(exception.what() == "Hello");
|
|
assert(exception2.what() == "Hello");
|
|
}
|