mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
14 lines
247 B
D
14 lines
247 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/binexperr.d(12): Error: expression expected, not `)`
|
|
fail_compilation/binexperr.d(12): Error: missing closing `)` after `if (A1 * (__error)`
|
|
---
|
|
*/
|
|
|
|
void main()
|
|
{
|
|
struct A1 {}
|
|
if (A1*) {}
|
|
return;
|
|
}
|