1 // bindgen-flags: -- -std=c++14 2 // bindgen-unstable 3 4 class Foo { 5 static constexpr auto kFoo = 2 == 2; 6 }; 7 8 template<typename T> 9 class Bar { 10 static const constexpr auto kBar = T(1); 11 }; 12 Test1()13template<typename T> auto Test1() { 14 return T(1); 15 } 16 Test2()17auto Test2() { 18 return Test1<unsigned int>(); 19 } 20