summaryrefslogtreecommitdiff
path: root/tests/cxx/tree/enumeration/ctor/driver.cxx
blob: 238d446b8cb6b48ac049d7c0c40e8cf3e7f16f4c (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
31
32
// file      : tests/cxx/tree/enumeration/ctor/driver.cxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2006-2009 Code Synthesis Tools CC
// 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);
  }
}