Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
d7d5f0223bd30dfd618762349c6209dd1d5ea3e6
/
.
/
test
/
Parser
/
cxx-exception-spec.cpp
blob: b2203c96df7256a1aa8bddf93942e9819c4fd5a8 [
file
] [
log
] [
blame
]
// RUN: clang-cc -fsyntax-only %s
struct
X
{
};
struct
Y
{
};
void
f
()
throw
()
{
}
void
g
(
int
)
throw
(
X
)
{
}
void
h
()
throw
(
X
,
Y
)
{
}
class
Class
{
void
foo
()
throw
(
X
,
Y
)
{
}
};