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

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

#include "test.hxx"

using namespace std;
using namespace test;

int
main ()
{
  // Test ctor(const char*).
  //
  {
    string_enum se ("a");
    type t ("a", 1);
  }

  // Test ctor(const std::string&)
  //
  {
    string const s ("c");
    string_enum se (s);
    type t (s, 3);
  }
}