summaryrefslogtreecommitdiffstats
path: root/Tests/CudaOnly/SeparateCompilation/main.cu
blob: d4520ae428cf6901dd462916f005f5c8dcdbb773 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

#include <iostream>

#include "file1.h"
#include "file2.h"

// result_type file4_launch_kernel(int x);
// result_type file5_launch_kernel(int x);

int main(int argc, char **argv)
{
  // file4_launch_kernel(42);
  // file5_launch_kernel(42);
  return 0;
}