1 2 3 4 5 6 7 8 9 10 11 12
contract Foo { function foo(uint32 n) public { if (n > 10) { // do something } // ERROR: unlike C integers can not be used as a condition // if (n) { // // ... // } } }