mem-partial2.c

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

C
30
字号
// PR c++/14032// { dg-do run }template <bool compare>struct outer{  template <bool compare_with,bool second>  struct inner           // unspecialized compare != compare_with  {    static inline bool test()    {      return false;    }  };  template <bool second> // specialization compare == compare_with  struct inner<compare,second>  {    static inline bool test()    {      return true;    }  };};int main (){  bool b = outer<true>::inner<true,false>::test();  return b != true;}

⌨️ 快捷键说明

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