mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
24 lines
503 B
D
24 lines
503 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail55.d(23): Error: function `object.Object.opCmp(Object o)` is not callable using argument types `(int)`
|
|
fail_compilation/fail55.d(23): cannot pass argument `0` of type `int` to parameter `Object o`
|
|
---
|
|
*/
|
|
|
|
// $HeadURL$
|
|
// $Date$
|
|
// $Author$
|
|
|
|
// @author@ zwang <nehzgnaw@gmail.com>
|
|
// @date@ 2005-02-03
|
|
// @uri@ news:cttjjg$4i0$2@digitaldaemon.com
|
|
|
|
// __DSTRESS_ELINE__ 14
|
|
|
|
module dstress.nocompile.bug_mtype_507_D;
|
|
|
|
void test()
|
|
{
|
|
0 < Exception;
|
|
}
|