error.cu 138 Bytes
Newer Older
dugupeiwen's avatar
dugupeiwen committed
1
2
3
4
5
6
7
extern "C" __device__
int bar(int* out, int a) {
  // Explicitly placed to generate an error
  SYNTAX ERROR
  *out = a * 2;
  return 0;
}