Sign in
cobalt
/
cobalt
/
11295760be490ee3fe93b612c49343055ab2c485
/
.
/
src
/
third_party
/
llvm-project
/
clang
/
test
/
SemaCXX
/
attr-disable-tail-calls.cpp
blob: d442aa6d4409364e474b213a6b931eb0f0a418aa [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s
// expected-no-diagnostics
class
B
{
public
:
[[
clang
::
disable_tail_calls
]]
virtual
int
foo1
()
{
return
1
;
}
[[
clang
::
disable_tail_calls
]]
int
foo2
()
{
return
2
;
}
};