1 // bindgen-flags: -- --target=x86_64-pc-win32 2 3 template<typename Method, bool Cancelable> 4 struct nsRunnableMethodTraits; 5 6 template<class C, typename R, bool Cancelable, typename... As> 7 struct nsRunnableMethodTraits<R(C::*)(As...), Cancelable> 8 { 9 static const bool can_cancel = Cancelable; 10 }; 11