view clang/test/SemaCXX/nothrow-as-noexcept-ctor.cpp @ 221:79ff65ed7e25

LLVM12 Original
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Tue, 15 Jun 2021 19:15:29 +0900
parents 1d019706d866
children
line wrap: on
line source

// RUN: %clang_cc1 %s -fcxx-exceptions -fsyntax-only -Wexceptions -verify -std=c++14

// expected-no-diagnostics
struct Base {
  __attribute__((nothrow)) Base() {}
};

struct Derived : Base {
  Derived() noexcept = default;
};

struct Base2 {
   Base2() noexcept {}
};

struct Derived2 : Base2 {
  __attribute__((nothrow)) Derived2() = default;
};

struct Base3 {
  __attribute__((nothrow)) Base3() {}
};

struct Derived3 : Base3 {
  __attribute__((nothrow)) Derived3() = default;
};