Author Topic: Code completion bugs ?  (Read 3493 times)

Offline Yuki

  • Single posting newcomer
  • *
  • Posts: 8
Code completion bugs ?
« on: March 21, 2007, 05:53:40 am »
Hi
The Code::blocks IDE 's code completion is very good.but I find a small "bug".I just post the code here:

#include <iostream>

class AA
{
public :
    int a;
};
using namespace std;

int main()
{
    AA b;
    b.a; // The code completion lists the variable a when I type b.

/*
    AA a;
    a.a; // But in this time the code completion can't list the variables
    and after typing a.a . I type b. again and it can't list the variables
*/
   cout << "Hello world!" << endl;
   return 0;
}

Thanks .