Changeset 805
- Timestamp:
- Oct 5, 2003, 6:05:47 AM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/testcase/456/boolparam.cpp
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r804 r805 41 41 } 42 42 43 bool bar(int i) 44 { 45 { 46 int i = 1; 47 i++; 48 i++; 49 i++; 50 i *= 2; 51 return i; 52 } 53 } 43 54 44 55 int main() 45 56 { 46 return !foo(false, true); 57 int rc = !foo(false, true); 58 if (!bar(0)) 59 rc = -1; 60 return rc; 47 61 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.