| 18 | import com.aparapi.Kernel; |
| 19 | |
| 20 | interface IFoo { |
| 21 | public int bar(int n); |
| 22 | } |
| 23 | |
| 24 | public class ImplementsInterface extends Kernel implements IFoo { |
| 25 | int out[] = new int[1]; |
nothing calls this directly
no outgoing calls
no test coverage detected