mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
12 lines
211 B
D
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");
|
|
}
|