Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/cxx14/InitCaptureTests.java')
-rw-r--r--core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/cxx14/InitCaptureTests.java26
1 files changed, 13 insertions, 13 deletions
diff --git a/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/cxx14/InitCaptureTests.java b/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/cxx14/InitCaptureTests.java
index 85b7dfcdc2c..2e38a3f274f 100644
--- a/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/cxx14/InitCaptureTests.java
+++ b/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/cxx14/InitCaptureTests.java
@@ -24,7 +24,7 @@ public class InitCaptureTests extends AST2CPPTestBase {
// int main() {
// [var1 { 3 }] { }();
// }
- public void testLambdaInitCaptures_413527_1a() throws Exception {
+ public void testLambdaInitCaptures_413527_1a() throws Exception {
parseAndCheckBindings();
}
@@ -32,7 +32,7 @@ public class InitCaptureTests extends AST2CPPTestBase {
// int var2 {};
// [var1 { 3 }, var2] { }();
// }
- public void testLambdaInitCaptures_413527_1b() throws Exception {
+ public void testLambdaInitCaptures_413527_1b() throws Exception {
parseAndCheckBindings();
}
@@ -40,7 +40,7 @@ public class InitCaptureTests extends AST2CPPTestBase {
// int var2 {};
// [var1 { 3 }, var2] { }();
// }
- public void testLambdaInitCaptures_413527_1c() throws Exception {
+ public void testLambdaInitCaptures_413527_1c() throws Exception {
BindingAssertionHelper helper = getAssertionHelper();
helper.assertVariableType("var2", CommonCPPTypes.int_);
helper.assertVariableType("var1", CommonCPPTypes.int_);
@@ -49,7 +49,7 @@ public class InitCaptureTests extends AST2CPPTestBase {
// int main() {
// [var1(3)] { }();
// }
- public void testLambdaInitCaptures_413527_2a() throws Exception {
+ public void testLambdaInitCaptures_413527_2a() throws Exception {
parseAndCheckBindings();
}
@@ -57,7 +57,7 @@ public class InitCaptureTests extends AST2CPPTestBase {
// int var2 { };
// [var1(3), var2] { }();
// }
- public void testLambdaInitCaptures_413527_2b() throws Exception {
+ public void testLambdaInitCaptures_413527_2b() throws Exception {
parseAndCheckBindings();
}
@@ -65,7 +65,7 @@ public class InitCaptureTests extends AST2CPPTestBase {
// int var2 { };
// [var1(3), var2] { }();
// }
- public void testLambdaInitCaptures_413527_2c() throws Exception {
+ public void testLambdaInitCaptures_413527_2c() throws Exception {
BindingAssertionHelper helper = getAssertionHelper();
helper.assertVariableType("var2", CommonCPPTypes.int_);
helper.assertVariableType("var1", CommonCPPTypes.int_);
@@ -75,7 +75,7 @@ public class InitCaptureTests extends AST2CPPTestBase {
// int var2 { };
// [var1( { 3, 3 } ), var2] { }();
// }
- public void testLambdaInitCaptures_413527_2d() throws Exception {
+ public void testLambdaInitCaptures_413527_2d() throws Exception {
BindingAssertionHelper helper = getAssertionHelper();
helper.assertVariableType("var2", CommonCPPTypes.int_);
// #include <initalizer_list> missing
@@ -85,7 +85,7 @@ public class InitCaptureTests extends AST2CPPTestBase {
// int main() {
// [var1 = 3] { }();
// }
- public void testLambdaInitCaptures_413527_3a() throws Exception {
+ public void testLambdaInitCaptures_413527_3a() throws Exception {
parseAndCheckBindings();
}
@@ -93,7 +93,7 @@ public class InitCaptureTests extends AST2CPPTestBase {
// int var2 { };
// [var1 = 3, var2] { }();
// }
- public void testLambdaInitCaptures_413527_3b() throws Exception {
+ public void testLambdaInitCaptures_413527_3b() throws Exception {
parseAndCheckBindings();
}
@@ -101,7 +101,7 @@ public class InitCaptureTests extends AST2CPPTestBase {
// int var2 { };
// [var1 = 3, var2] { }();
// }
- public void testLambdaInitCaptures_413527_3c() throws Exception {
+ public void testLambdaInitCaptures_413527_3c() throws Exception {
BindingAssertionHelper helper = getAssertionHelper();
helper.assertVariableType("var2", CommonCPPTypes.int_);
helper.assertVariableType("var1", CommonCPPTypes.int_);
@@ -115,7 +115,7 @@ public class InitCaptureTests extends AST2CPPTestBase {
// int var2 { };
// [var1 = { 3, 4 }, var2] { }();
// }
- public void testLambdaInitCaptures_413527_3d() throws Exception {
+ public void testLambdaInitCaptures_413527_3d() throws Exception {
BindingAssertionHelper helper = getAssertionHelper();
helper.assertVariableType("var2", CommonCPPTypes.int_);
// #include <initalizer_list> missing
@@ -127,7 +127,7 @@ public class InitCaptureTests extends AST2CPPTestBase {
// auto var3 = var1;
// }();
// }
- public void testLambdaInitCaptures_413527_4a() throws Exception {
+ public void testLambdaInitCaptures_413527_4a() throws Exception {
parseAndCheckBindings();
BindingAssertionHelper helper = getAssertionHelper();
helper.assertVariableType("var1", CommonCPPTypes.int_);
@@ -139,7 +139,7 @@ public class InitCaptureTests extends AST2CPPTestBase {
// var1++;
// }();
// }
- public void testLambdaInitCaptures_413527_4b() throws Exception {
+ public void testLambdaInitCaptures_413527_4b() throws Exception {
parseAndCheckBindings();
BindingAssertionHelper helper = getAssertionHelper();
helper.assertVariableType("var1", CommonCPPTypes.int_);

Back to the top