two-stage2.C: fix comment.

2008-01-18  Jonathan Wakely  <jwakely.gcc@gmail.com>

	* g++.dg/lookup/two-stage2.C: fix comment.

From-SVN: r131636
This commit is contained in:
Jonathan Wakely 2008-01-18 21:18:37 +00:00 committed by Jonathan Wakely
parent 70a0694b3a
commit a4c2b85784
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2008-01-18 Jonathan Wakely <jwakely.gcc@gmail.com>
* gcc/testsuite/g++.dg/lookup/two-stage2.C: fix comment.
2008-01-18 Ian Lance Taylor <iant@google.com>
* gcc.dg/debug/dwarf2/var1.c: Add -fno-merge-debug-strings.

View File

@ -14,6 +14,6 @@ int&f (int);
int main()
{
g(2); // f(char) followed by f(int)
g(2); // two f(char)
g('a'); // two f(char)
}