// bindgen-flags: -- -std=c++11 struct false_type {}; template struct __is_base_to_derived_ref; template struct __is_base_to_derived_ref<_From, _To, true> { typedef _To type; static constexpr bool value = type::value; }; template struct __is_base_to_derived_ref<_From, _To, false> : public false_type { };