blob: bcccc3c85e4998ecfc1db12a4144dffded634cc9 [file] [log] [blame]
// bindgen-flags: --allowlist-type bool_constant -- -std=c++11
// NB: The --allowlist-type is done to trigger the traversal of the types on
// codegen in order to trigger #67.
template<typename T, T Val>
struct integral_constant {};
template<bool B>
using bool_constant = integral_constant<bool, B>;