1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-13 11:15:38 +02:00

Bug 412032 - Fix test that failed to fail before the fix

This commit is contained in:
Marc-Andre Laperle 2013-08-30 23:30:07 -04:00
parent 3a1afc32a0
commit 18e785490f

View file

@ -554,15 +554,17 @@ public class ExtractLocalVariableRefactoringTest extends RefactoringTestBase {
//main.c //main.c
//int getSomething(int x) { return 0; } //int getSomething(int x) { return 0; }
//int getSomething2(int x) { return 0; }
// //
//void f(){ //void f(){
// /*$*/getSomething(getSomething(0))/*$$*/; // /*$*/getSomething(getSomething2(0))/*$$*/;
//} //}
//==================== //====================
//int getSomething(int x) { return 0; } //int getSomething(int x) { return 0; }
//int getSomething2(int x) { return 0; }
// //
//void f(){ //void f(){
// int something = getSomething(getSomething(0)); // int something = getSomething(getSomething2(0));
// something; // something;
//} //}
public void testSuggestedNameCFile_Bug412032_2() throws Exception { public void testSuggestedNameCFile_Bug412032_2() throws Exception {