solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/391_inline_assembly_labels.sol

11 lines
444 B
Solidity
Raw Normal View History

contract C {
function f() pure public {
assembly {
label:
}
}
}
// ----
// Warning: (75-80): The use of labels is deprecated. Please use "if", "switch", "for" or function calls instead.
// Warning: (75-80): Jump instructions and labels are low-level EVM features that can lead to incorrect stack access. Because of that they are discouraged. Please consider using "switch", "if" or "for" statements instead.