⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 decl1.c

📁 linux下的gcc编译器
💻 C
字号:
// { dg-do compile }// Copyright (C) 2002 Free Software Foundation, Inc.// Contributed by Nathan Sidwell 24 Dec 2002 <nathan@codesourcery.com>// PR 8702. Failure to match templates.template <typename X> struct C1{};template <typename X>struct C2 {  template<typename Y> operator C1<Y>();  template<typename Y> operator C2<Y>();};template<typename X> template<typename Y>C2<X>::operator C1<Y>(){  return C1<Y>();}struct A{  operator int ();			// { dg-error "operator" "" }  operator float ();			// { dg-error "operator" "" }  operator float () const;		// { dg-error "operator" "" }  template <typename T> operator T * (); // { dg-error "candidates" "" }};A::operator short () { // { dg-error "prototype for" "" }  return 0;}

⌨️ 快捷键说明

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