mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
37 lines
1.2 KiB
D
37 lines
1.2 KiB
D
/*
|
|
TEST_OUTPUT:
|
|
----
|
|
fail_compilation/fail58.d(28): Error: function `SomeFunc` is not callable using argument types `(string, int)`
|
|
fail_compilation/fail58.d(28): cannot pass argument `"123"` of type `string` to parameter `dchar[] pText`
|
|
fail_compilation/fail58.d(14): `fail58.SomeFunc(dchar[] pText, out int pStopPosn)` declared here
|
|
fail_compilation/fail58.d(32): Error: function `SomeFunc` is not callable using argument types `(string, int)`
|
|
fail_compilation/fail58.d(32): cannot pass argument `""` of type `string` to parameter `dchar[] pText`
|
|
fail_compilation/fail58.d(14): `fail58.SomeFunc(dchar[] pText, out int pStopPosn)` declared here
|
|
----
|
|
*/
|
|
debug import std.stdio;
|
|
const int anything = -1000; // Line #2
|
|
dchar[] SomeFunc( dchar[] pText, out int pStopPosn)
|
|
{
|
|
if (pText.length == 0)
|
|
pStopPosn = 0;
|
|
else
|
|
pStopPosn = -1;
|
|
debug writefln("DEBUG: using '%s' we get %d", pText, pStopPosn);
|
|
return pText.dup;
|
|
}
|
|
|
|
int main(char[][] pArgs)
|
|
{
|
|
int sp;
|
|
|
|
SomeFunc("123", sp);
|
|
debug writefln("DEBUG: got %d", sp);
|
|
assert(sp == -1);
|
|
|
|
SomeFunc("", sp);
|
|
// if (sp != 0){} // Line #22
|
|
debug writefln("DEBUG: got %d", sp);
|
|
assert(sp == -1);
|
|
return 0;
|
|
}
|