用于进行gcc测试

源代码在线查看: overload15.c

软件大小: 6330 K
上传用户: yhw002
关键词: gcc 测试
下载地址: 免注册下载 普通下载 VIP

相关代码

				// { dg-do assemble  }				// Test resolution of templatized overloaded constructors.				// The more specialized constructor, i.e., A (const B &b)				// should be chosen per \S 14.5.5.2/2 [temp.func.order/2].								template 				struct B {				  int f;				};								struct A {				  template 				  A (const B &b) {}								  template 				  A (const T &b) {}				};								int				main ()				{				  B b;				  A a (b);				  return 0;				}							

相关资源