1 2 3 4 5 6 7 8 9 10
contract C { function f() pure external { function() external two_stack_slots; assembly { let x := two_stack_slots } } } // ---- // TypeError 9857: (132-147): Only types that use one stack slot are supported.