Sign in
llvm
/
clang
/
3b8d539899d6651504edfbaaa2ea68eb9d7aa6ac
/
.
/
test
/
CodeGenCXX
/
type-traits.cpp
blob: 93cc6b56f1d2682f52e62314d606c0f9023b2a54 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -emit-llvm-only -verify %s
// expected-no-diagnostics
bool
a
()
{
return
__is_pod
(
int
);
}
bool
b
()
{
return
__is_trivially_constructible
(
int
,
int
,
int
);
}