linux下编程用 编译软件

源代码在线查看: conv1.c

软件大小: 49607 K
上传用户: IsABC
关键词: linux 编程 编译 软件
下载地址: 免注册下载 普通下载 VIP

相关代码

				// { dg-do compile }								// Copyright (C) 2003 Free Software Foundation, Inc.				// Contributed by Nathan Sidwell 20 Apr 2003 								// PR 10337, unneeded warning								class A {				  public:				  A() {}				};								class B : public A {				  public:				  B() {}				  void operator=(const A& b) {}				  void operator=(const B& b) {}				};								class C {				  public:				  C() {}				  operator B &() { return _b; }				  operator const B &() const { return _b; }				  				  B _b;				};								int main() {				  B b;				  C c;				  b = c;				}							

相关资源