summaryrefslogtreecommitdiff
path: root/Tests/CxxOnly/cxxonly.cxx
blob: bd4fd59149676120b26ce29601fa69834e88c5a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "libcxx1.h"
#include "libcxx2.h"
extern int testCPP;

#include <stdio.h>

int main ()
{
  testCPP = 1;
  if ( LibCxx1Class::Method() != 2.0 )
    {
    printf("Problem with libcxx1\n");
    return 1;
    }
  if ( LibCxx2Class::Method() != 1.0 )
    {
    printf("Problem with libcxx2\n");
    return 1;
    }
  return 0;
}