1 // RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s
2 // expected-no-diagnostics
6 [[clang::not_tail_called
]] virtual int foo1();
8 [[clang::not_tail_called
]] int foo3();
12 class Derived1
: public Base
{
15 [[clang::not_tail_called
]] int foo2() override
;
16 [[clang::not_tail_called
]] int foo4();