]> granicus.if.org Git - clang/commitdiff
Fix test case to match intent.
authorDaniel Dunbar <daniel@zuster.org>
Sat, 11 Jul 2009 20:17:35 +0000 (20:17 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Sat, 11 Jul 2009 20:17:35 +0000 (20:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@75381 91177308-0d34-0410-b5e6-96231b3b80d8

test/CXX/over/over.over/p1.cpp

index 1a218f45d23441c005e67b735f0886fb74658e51..e7f7d18c69e3cad283c018bff694374c2e5da885 100644 (file)
@@ -19,7 +19,7 @@ void test_init_f0() {
   int (&f0g)(int) = f0;
   int (&f0h)(int) = (f0);
   float (&f0i)(float) = f0;
-  float (&f0j)(float) = f0;
+  float (&f0j)(float) = (f0);
   S s = { f0, f0 };
 }