solidity/test/libsolidity/syntaxTests/parsing/new_invalid_type_name.sol
2018-05-09 14:08:25 +02:00

8 lines
107 B
Solidity

contract C {
function f() {
new var;
}
}
// ----
// ParserError: (35-38): Expected explicit type name.