view gcc/testsuite/g++.dg/eh/spec6.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

// Test that we don't allow incomplete types in an exception-specification
// for a definition, or at a call site.

// { dg-do compile { target c++14_down } }
// { dg-options "-fpermissive -w" }

struct A;			// { dg-message "" }

struct B
{
  void f () throw (A);
};

void B::f () throw (A) {}	// { dg-error "A" }

int main ()
{
  B b;
  b.f();			// { dg-error "A" }
}