Home
Feedback Tracker
Search
Configure Global Search
Log In
Transactions
T136034
Change Details
Change Details
Old
New
Diff
``` function foo() { bool b = true; if (b) { int value = 0; } else { int value = 0; } //DUPLICATE VARIABLE 'VALUE'. ``` Reporting for Bubbles#0173 as he can't create an account right now. I fundet this as well.
``` function foo() { bool b = true; if (b) { int value = 0; } else { int value = 0; } } //DUPLICATE VARIABLE 'VALUE'. ``` Reporting for Bubbles#0173 as he can't create an account right now. I fundet this as well.
``` function foo() {
bool b = true;
if (b) {
int value = 0;
} else {
int value = 0;
int value = 0;
}
} //DUPLICATE VARIABLE 'VALUE'. ``` Reporting for Bubbles#0173 as he can't create an account right now. I fundet this as well.
Continue