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