summaryrefslogtreecommitdiff
path: root/xsd-tests/schema/list/driver.cxx
blob: e43875e7739f6ba40c8d3029c9c9e96a7384c9c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// file      : schema/list/driver.cxx
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

#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;
}