1 // bindgen-flags: -- -std=c++11 2 3 template <typename... T> 4 struct B { 5 // Can't generate anything meaningful in Rust for this, but we shouldn't 6 // trigger an assertion inside Clang. 7 static const long c = sizeof...(T); 8 }; 9