solidity/test/libsolidity/syntaxTests/parsing/new_invalid_type_name.sol

8 lines
112 B
Solidity
Raw Normal View History

2018-05-02 19:49:59 +00:00
contract C {
function f() {
new var;
}
}
// ----
// ParserError 7059: (35-38): Expected explicit type name.