summaryrefslogtreecommitdiffstats
path: root/Tests/Cuda/StaticRuntimePlusToolkit/main.cpp
blob: 5a09f8e1b391bed4fe51e38cc87e969ef9b9cf69 (plain)
1
2
3
4
5
6
7
8
9
10
11


int shared_version();
int static_version();
int mixed_version();

int main()
{
  return mixed_version() == 0 && shared_version() == 0 &&
    static_version() == 0;
}