linux下的gcc编译器

源代码在线查看: using1.c

软件大小: 30755 K
上传用户: xfzzp_0321
关键词: linux gcc 编译器
下载地址: 免注册下载 普通下载 VIP

相关代码

				// Copyright (C) 2001 Free Software Foundation, Inc.				// Contributed by Nathan Sidwell 26 Feb 2001 								// Bug 1981. using declarations in namespace scope were not remembered.								namespace A				{				  void swap () {}				};								template  void f()				{				  using A::swap;				}								template void f ();								int foo (int) { return 0;}								namespace B				{				  int foo (int) { return 1;}				  				  template  int baz ()				  {				    using ::foo;				    				    return foo (1);				  }				  template int baz ();				};								int main ()				{				  return B::baz ();				}							

相关资源