dmd/compiler/test/fail_compilation/diag3013.d
2022-07-09 18:53:07 +02:00

12 lines
211 B
D

/*
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");
}