2019-02-06 19:43:53 +00:00
|
|
|
contract C {
|
|
|
|
function f() pure external {
|
|
|
|
function() external two_stack_slots;
|
|
|
|
assembly {
|
|
|
|
let x := two_stack_slots
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
2020-06-19 00:26:46 +00:00
|
|
|
// TypeError 9857: (132-147): Only types that use one stack slot are supported.
|