typename21.c

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

C
26
字号
// Build don't link:// Origin: Mark Mitchell <mark@codesourcery.com>// Special g++ Options:template <class T>struct S1 {  typedef T X;};template <class T>struct B {  typedef T I;};template <class T>struct S2 : public B<T> {  struct I {};  typedef typename S1<I>::X IX;  void f(IX);};template <class T>void S2<T>::f(IX) {}

⌨️ 快捷键说明

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