ErrorRecovery test.

This commit is contained in:
CristinaCristescu 2013-10-25 15:23:21 +02:00 committed by sftnight
parent 85b4232729
commit 4a8b33b878
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
// RUN: cat %s | %cling -I%p -Xclang -verify 2>&1 |
// RUN: cat %s | %cling -I%p -Xclang -verify 2>&1 | FileCheck %s
// Test the removal of decls from the redeclaration chain, which are marked as
// redeclarables.

View File

@ -21,7 +21,7 @@ int OverloadedF(int i) { return i + 100;}
.rawInput 0
int __my_i = 10
// CHECK: (int) 10
// CHECK: (int) 1
OverloadedF(__my_i)
// CHECK: (int) 110
TemplatedF(__my_i)