blob: c57b4b9c84b6a779eff1644dce5b278ad305a77d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
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");
}
|