blob: 78e0891f3d6b20acdfc656b3c7b48f6371fceccd [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/ctfe14731.d(16): Error: cannot implicitly convert expression `["a b"]` of type `string[]` to `string`
fail_compilation/ctfe14731.d(17): Error: cannot implicitly convert expression `split("a b")` of type `string[]` to `string`
---
*/
string[] split(string a)
{
return [a];
}
void main()
{
enum string list1 = "a b".split();
string list2 = "a b".split();
}