Fix test case to match intent.

llvm-svn: 75381
This commit is contained in:
Daniel Dunbar 2009-07-11 20:17:35 +00:00
parent 4eb1ad2086
commit 631a57e30f
1 changed files with 1 additions and 1 deletions

View 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 };
}