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