xml大全 可读写调用率很高 xml大全 可读写调用率很高

源代码在线查看: 900404_02.c

软件大小: 34923 K
上传用户: chengshengwu123
关键词: xml 读写
下载地址: 免注册下载 普通下载 VIP

相关代码

				// { dg-do assemble  }				// g++ 1.37.1 bug 900404_02								// g++ fails to treat multicharacter literals as type "int" as required by				// section 2.5.2 of the C++ Reference Manual.								// The result is that the following program will exit with a nonzero				// exit status.								// keywords: character literals, multi-character literals, int type								int exit_status = 0;								void function0 (int i)		// function that should be called				{				  i = i;				}								void function0 (char c)		// function that is actually called				{				  c = c;				  exit_status++;				}								int main () { function0 ('abcd'); return exit_status; }		// { dg-warning "" } 							

相关资源