You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following test program includes two compile-time errors: 1) struct_instance9, of storage pointer type, is accessed without prior assignment; and 2) Type uint256 is not implicitly convertible to expected type uint64 at line uint64 a = 11 << b;.
However, the second error seems to suppress the throw-out of the first error message. The compiler only reports the second error. If I comment out the whole contract C, the first error will be reported.
Description
The following test program includes two compile-time errors: 1)
struct_instance9
, of storage pointer type, is accessed without prior assignment; and 2)Type uint256 is not implicitly convertible to expected type uint64
at lineuint64 a = 11 << b;
.However, the second error seems to suppress the throw-out of the first error message. The compiler only reports the second error. If I comment out the whole contract C, the first error will be reported.
Environment
The text was updated successfully, but these errors were encountered: