()
| 117 | // 'return' is allowed across function boundaries inside static blocks. |
| 118 | class C2 { static { |
| 119 | function f1() { return; } |
| 120 | function f2() { return 0; } |
| 121 | let f3 = (x => { return x; }) |
| 122 | let f4 = (x => { return; }) |
no outgoing calls
no test coverage detected