variadic67.c

来自「用于进行gcc测试」· C语言 代码 · 共 25 行

C
25
字号
// { dg-options "-std=gnu++0x" }template<typename... Elements> struct tuple {};template<typename... Args>struct nested{  typedef tuple<tuple<Args, Args...>...> type;};template<typename T, typename U>struct is_same{  static const bool value = false;};template<typename T>struct is_same<T, T>{  static const bool value = true;};int a0[is_same<nested<int, float>::type,                       tuple<tuple<int, int, float>,                             tuple<float, int, float> > >::value? 1 : -1];

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?