📄 template24.c
字号:
// { dg-do run }// Bug: g++ doesn't find the conversion from ostream_withassign to ostream.#include <iostream>template <class T>struct A { T t;};template <class T>std::ostream & operator<< (std::ostream & os, A<T> & a){ os << a.t; return os;}int main (){ A<int> a = { 1 }; std::cout << a << std::endl;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -