decl1.c

来自「linux下编程用 编译软件」· C语言 代码 · 共 33 行

C
33
字号
// { 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 + =
减小字号Ctrl + -
显示快捷键?