Bug #13779 2008-05-09 02:59
liming
part of code disappeared when input /*
See example codes Below
do fellow 2 steps
1.click right mouse in Editor, choose Folding -> Fold All
2.insert two char /* at the begining of the line under "using namespace std;", than part of code disappeared
/************** Example Code*******************/
#include <iostream>
using namespace std;
enum Type {
Hello = 1,
World = 2,
};
int main()
{
Type tmp = (Type) (Hello | World);
cout << "Hello world!" << endl;
cout << Hello << ' ' << World
<< ' ' << (Hello | World) << ' '
<< tmp << endl;
return 0;
}
- Category
- Group
- Status
- Open
- Close date
- Assigned to
History
liming 2008-05-09 03:03
Release 8.02(2008-02-27 19:55:16) gcc 4.2.1 Windows/unicode