solidity/test/libyul/yulOptimizerTests/functionGrouper/single_fun.yul

13 lines
149 B
Plaintext
Raw Normal View History

2018-10-11 13:42:31 +00:00
{
let a:u256 function f() {}
}
2019-04-01 14:33:46 +00:00
// ====
// step: functionGrouper
// yul: true
2018-10-11 13:42:31 +00:00
// ----
// {
// { let a:u256 }
2018-10-11 13:42:31 +00:00
// function f()
// { }
2018-10-11 13:42:31 +00:00
// }