(i, _)
| 286 | def testControlFlowInitialization(self): |
| 287 | """Expects an error if an initializer is in a control-flow scope.""" |
| 288 | def cond(i, _): |
| 289 | return i < 10 |
| 290 | |
| 291 | def body(i, _): |
| 292 | zero = array_ops.zeros([], dtype=dtypes.int32) |
no outgoing calls
no test coverage detected