Sign in
fuchsia
/
third_party
/
swift-clang
/
a40ea3abe6e2f0b338d00c38fe7d724241c5af97
/
.
/
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
);
}