summaryrefslogtreecommitdiff
path: root/xsd-tests/cxx/tree/union/ctor/driver.cxx
blob: 246eea83396948c42df33d0b1bb7da31ccc6eca7 (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/union/ctor/driver.cxx
// license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

// Test union constructors.
//
#include <string>

#include "test.hxx"

using namespace std;
using namespace test;

int
main ()
{
  // Test ctor(const std::string&)
  //
  {
    string const s ("123");
    int_string_union u (s);
    type t (s);
  }

  // Test ctor(const char*).
  //
  {
    int_string_union u ("123");
    type t ("123");
  }
}