2004-05-13 02:41:07 -04:00
|
|
|
#include <string>
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
int
|
|
|
|
main (int argc, char *argv[])
|
|
|
|
{
|
|
|
|
std::string myStr = "Hello, World!";
|
|
|
|
std::cout << myStr << std::endl;
|
|
|
|
return 0;
|
|
|
|
}
|
2010-08-20 09:14:00 +02:00
|
|
|
|
|
|
|
/* Ignore a warning that is irrelevant to the purpose of this test. */
|
|
|
|
/* { dg-prune-output ".*mudflap cannot track unknown size extern.*" } */
|