typename19.c

来自「this is a gcc file, you can download it 」· C语言 代码 · 共 27 行

C
27
字号
// Special g++ Options:// Origin: Mark Mitchell <mark@codesourcery.com>template <class T>struct O {  typedef char X;};template <class T>struct S {  typedef double X;  template <class U>  struct I : public O<U> {    static X x; // WARNING - lookup finds S<T>::X  };};template <class T>template <class U>typename S<T>::X S<T>::I<U>::x;int main(){  return sizeof (S<int>::I<double>::x) == 1;}

⌨️ 快捷键说明

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