overload7.c
来自「this is a gcc file, you can download it 」· C语言 代码 · 共 21 行
C
21 行
// Build don't link:// Adapted from testcase by Corey Kosak <kosak@cs.cmu.edu>template<class T>struct moo_t { struct cow_t {};};template<class T> void foo(typename moo_t<T>::cow_t) {}template<class T> void foo(moo_t<T>) { typename moo_t<T>::cow_t p; foo(p); // gets bogus error - no matching function for call - XFAIL *-*-*}int main() { moo_t<int> x; foo(x); // gets bogus error - instantiated from here - XFAIL *-*-*}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?