solidity/test/libsolidity/syntaxTests/inlineAssembly/invalid/literals_on_stack_disallowed.sol
2019-10-25 15:01:25 +02:00

10 lines
157 B
Solidity

contract C {
function f() pure public {
assembly {
1
}
}
}
// ----
// ParserError: (85-86): Call or assignment expected.