Mac OS X 10.4.9 for x86 Source Code gcc 实现源代码

源代码在线查看: two-stage1.c

软件大小: 38649 K
上传用户: liuchuyuan
关键词: Source Code Mac for
下载地址: 免注册下载 普通下载 VIP

相关代码

				/* PR c++/2437 */				/* { dg-do run } */								// Test of two-stage name lookup.								int g(double) { return 0; }				 				template  struct X				{				  int f() { return g(2); } // should call g(double)				};				 				inline int g(int) { return 1; }				 				int main()				{				  return X().f(); // should call g(double), but used to call g(int)				}							

相关资源