aboutsummaryrefslogtreecommitdiff
path: root/clang/test/SemaCXX/attr-notail.cpp
blob: 2303a3cc54b7c6e5b0309c1353184fd3354812b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s
// expected-no-diagnostics

class Base {
public:
  [[clang::not_tail_called]] virtual int foo1();
  virtual int foo2();
  [[clang::not_tail_called]] int foo3();
  virtual ~Base() {}
};

class Derived1 : public Base {
public:
  int foo1() override;
  [[clang::not_tail_called]] int foo2() override;
  [[clang::not_tail_called]] int foo4();
};