mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
12 lines
238 B
D
12 lines
238 B
D
/* REQUIRED_ARGS: -preview=dip1000 -Ifail_compilation/imports
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/issue21685_main.d(11): Error: class `issue21685.E` constructor `this` is not accessible
|
|
---
|
|
*/
|
|
import issue21685;
|
|
|
|
void main()
|
|
{
|
|
new E;
|
|
}
|