summaryrefslogtreecommitdiff
path: root/Examples/test-suite/d/default_constructor_runme.1.d
blob: bd79cdf99258c86ab597f5786d33c2736ff2b9f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module default_constructor_runme;

import default_constructor.G;

void main() {
  // Protected destructor test.
  try {
    {
      scope g = new G();
    }
    throw new Exception("Protected destructor exception should have been thrown");
  } catch (Exception e) {
    if (e.msg != "C++ destructor does not have public access") {
      throw e;
    }
  }
}