blob: 2808606bdcae852485f7710dc73893f304e885a4 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/diag13320.d(13): Error: `f` is not a scalar, it is a `Foo`
---
*/
struct Foo {}
void main()
{
Foo f;
++f;
}