blob: 67bdd3174310802e41b81a354d48a963e05c37a4 [file] [log] [blame]
/*
REQUIRED_ARGS: -o-
TEST_OUTPUT:
---
fail_compilation/fail20040.d(13): Error: no property `joiner` for type `string[]`, perhaps `import std.algorithm;` is needed?
fail_compilation/fail20040.d(14): Error: no property `split` for type `string[]`, perhaps `import std.array;` is needed?
fail_compilation/fail20040.d(15): Error: no property `startsWith` for type `string[]`, perhaps `import std.algorithm;` is needed?
---
*/
void main()
{
auto x = ["a","b","c"];
x.joiner();
x.split();
x.startsWith;
}