| 31 | } |
| 32 | |
| 33 | void bla( ) { // no input or return but output side effect |
| 34 | Rprintf( "hello\n" ); |
| 35 | } |
| 36 | |
| 37 | void bla1(int x) { // output reflecting a single input |
| 38 | Rprintf("hello (x = %d)\n", x); |
nothing calls this directly
no outgoing calls
no test coverage detected