Bug 425445 - Compilation error when extracting variable with invalid name (keyword)
Summary: Compilation error when extracting variable with invalid name (keyword)
Status: NEW
Alias: None
Product: CDT
Classification: Tools
Component: cdt-refactoring (show other bugs)
Version: Next   Edit
Hardware: PC Mac OS X
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Project Inbox CLA
QA Contact: Jonah Graham CLA
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-01-10 14:33 EST by Gustavo Wagner CLA
Modified: 2020-09-04 15:18 EDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Gustavo Wagner CLA 2014-01-10 14:33:32 EST
Eclipse IDE for C/C++ Developers
Version: Kepler Service Release 1
Build id: 20130919-0819


Reproducing the bug:


Consider the following code:
============== Original Version ===============
int main(int a, char** argv) {
    int b = 0; // constant to be extracted to a variable
    return 0;
}
===============================================

After applying the refactoring, we have the resulting code:

============= Refactored Version ==============
int main(int a, char** argv) {
    int int = 0; // invalid token name
    int b = int;
    return 0;
}
===============================================

The refactoring tool allows to extract variables with invalid names, like the keyword "int", leading to a compiling error.


Thanks in advance.
Comment 1 Gustavo Wagner CLA 2014-01-11 00:19:42 EST
* by constant, I was actually saying "literal value"

Sorry about that.