mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
12 lines
219 B
D
12 lines
219 B
D
/*
|
|
REQUIRED_ARGS: -m64 -o-
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail9301.d(11): Error: cannot implicitly convert expression `0` of type `int` to `__vector(void[16])`
|
|
---
|
|
*/
|
|
|
|
void main()
|
|
{
|
|
__vector(void[16]) x = 0x0;
|
|
}
|