blob: 4c4a1217e32be7ea01829a02f4feb8e3d624b031 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
contract c {
enum validEnum { Value1, Value2, Value3, Value4 }
function c() {
a = validEnum.Value3;
}
validEnum a;
}
// ----
// Warning: (71-121): Defining constructors as functions with the same name as the contract is deprecated. Use "constructor(...) { ... }" instead.
// Warning: (71-121): No visibility specified. Defaulting to "public".
|