summaryrefslogtreecommitdiff
path: root/xsd-tests/cxx/tree/types-only/driver.cxx
blob: 730b807f134095bd74acc124f560553c9f247dc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// file      : cxx/tree/types-only/driver.cxx
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

// Test that code generated without parsing and serialization functions
// still compiles.
//

#include <iostream>

#include "test.hxx"

using namespace std;
using namespace test;

int
main ()
{
  color_enum red (color_enum::red);
  red_blue_enum blue (red_blue_enum::blue);

  long_string_union num ("123");

  string_list list;
  list.push_back ("Hello");
  list.push_back ("World");

  complex_type t ("Hello, World!", "foo", color_enum::red);

  anon a ("Hello, World!");
}