1// RUN: %clang_cc1 -emit-llvm-only -verify %s2// expected-no-diagnostics3 4bool a() { return __is_pod(int); }5 6bool b() { return __is_trivially_constructible(int, int, int); }7