mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
15 lines
217 B
D
15 lines
217 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/diag8892.d(14): Error: cannot implicitly convert expression `['A']` of type `char[]` to `char[2]`
|
|
---
|
|
*/
|
|
struct Foo
|
|
{
|
|
char[2] data;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
auto f = Foo(['A']);
|
|
}
|