blob: c57b4b9c84b6a779eff1644dce5b278ad305a77d [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");
}