blob: f0760c8ffd314b5c9fdb41e7c3dd836a5eb46e70 [file] [log] [blame]
// bindgen-flags: --whitelist-type bool_constant -- -std=c++11
// NB: The --whitelist-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>;