summaryrefslogtreecommitdiff
path: root/tests/cxx/tree/union/ctor/driver.cxx
blob: df60a938c3139e8e0e126a22ac4e9db451b51fdb (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      : tests/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");
  }
}