trunk/Test/bug1770479.cpp: a test case for the eponymous bug.

git-svn-id: svn://svn.code.sf.net/p/ctags/code/trunk@603 c5d04d22-be80-434c-894e-aa346cc9e8e8
This commit is contained in:
elliotth 2007-08-13 02:46:10 +00:00
parent a505e8ffb0
commit 632e67beb0
1 changed files with 17 additions and 0 deletions

17
Test/bug1770479.cpp Normal file
View File

@ -0,0 +1,17 @@
#include <sstream>
int main (int argc, char **argv)
{
std::ostringstream a;
a << "a";
std::ostringstream b;
b << "b";
return 0;
}
int foo (int i)
{
return i;
}