summaryrefslogtreecommitdiff
path: root/tests/schema/list/driver.cxx
blob: 7bd46e9ecc289450e6dd20d3f2beaebf155d47c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "test.hxx"

typedef xmlns::test::IntList<void, int> IntListImpl;
typedef xmlns::test::IntList<void, void> IntListVoidImpl;
typedef xmlns::test::IntComplex<void, int, char*> IntComplexImpl;

int
main ()
{
  IntListImpl int_list_impl;
  IntListVoidImpl int_list_void_impl;
  IntComplexImpl int_complex_impl;
}