()
| 1344 | const Context = React.createContext(0); |
| 1345 | class Foo extends React.Component { |
| 1346 | render() { |
| 1347 | return useContext(Context); |
| 1348 | } |
| 1349 | } |
| 1350 | ReactNoop.render(<Foo />); |
| 1351 | await waitForThrow( |
nothing calls this directly
no test coverage detected