1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail55.d(22): Error: function object.Object.opCmp (Object o) is not callable using argument types (int)
5 ---
6 */
7 
8 // $HeadURL$
9 // $Date$
10 // $Author$
11 
12 // @author@ zwang <nehzgnaw@gmail.com>
13 // @date@   2005-02-03
14 // @uri@    news:cttjjg$4i0$2@digitaldaemon.com
15 
16 // __DSTRESS_ELINE__ 14
17 
18 module dstress.nocompile.bug_mtype_507_D;
19 
test()20 void test()
21 {
22     0 < Exception;
23 }
24