blob: 41c98b0c5198e40d365922d1e37fca3d1abb4156 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/diag3013.d(11): Error: cannot pass type `string` as a function argument
---
*/
int format(string, string, string);
void main() {
int s = string.format("abc", "def");
}