array8.c

来自「Mac OS X 10.4.9 for x86 Source Code gcc」· C语言 代码 · 共 17 行

C
17
字号
// PR c++/18121// We were trying to layout the array// type but since the type/value of A<N>::i// was not known at template declation type,// we were crashingtemplate<int> struct A{    static int const i = 1;};template<int N> struct B{    typedef int (*p)[A<N>::i];};

⌨️ 快捷键说明

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