source:
tests/resolutionErrors.cfa
@
8463136
Last change on this file since 8463136 was 71d6bd8, checked in by , 5 years ago | |
---|---|
|
|
File size: 871 bytes |
Rev | Line | |
---|---|---|
[71d6bd8] | 1 | // |
2 | // Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo | |
3 | // | |
4 | // The contents of this file are covered under the licence agreement in the | |
5 | // file "LICENCE" distributed with Cforall. | |
6 | // | |
7 | // resolutionErrors.cfa -- | |
8 | // | |
9 | // Author : Thierry Delisle | |
10 | // Created On : Thu Nov 28 15:17:52 2019 | |
11 | // Last Modified By : | |
12 | // Last Modified On : | |
13 | // Update Count : | |
14 | // | |
15 | ||
16 | struct atype {}; | |
17 | ||
18 | void noparams() {} | |
19 | void wrongparams( atype& ) {} | |
20 | void moreparams( int, int ) {} | |
21 | void fewparams( int ) {} | |
22 | void noreturn() {} | |
23 | ||
24 | void simple_calls() { | |
25 | notexist(); | |
26 | notexistparams( 3 ); | |
27 | noparams( 3 ); | |
28 | wrongparams( 3 ); | |
29 | moreparams( 3 ); | |
30 | fewparams( 3, 3 ); | |
31 | int a = noreturn(); | |
32 | ||
33 | int notfunction; | |
34 | notfunction(3); | |
35 | ||
36 | atype t; | |
37 | t.a; | |
38 | } | |
39 | ||
40 | void ctor_calls() { | |
41 | atype a = 3; | |
42 | } | |
43 | ||
44 | // Local Variables: // | |
45 | // tab-width: 4 // | |
46 | // compile-command: "cfa resolutionErrors.cfa" // | |
47 | // End: // |
Note: See TracBrowser
for help on using the repository browser.