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

6 lines
127 B
Solidity
Raw Normal View History

2018-05-02 19:49:59 +00:00
contract Foo {
function f() { var memory x; }
}
// ----
// ParserError: (35-35): Location specifier needs explicit type name.