Code::Blocks Forums

User forums => Using Code::Blocks => Topic started by: mann on January 04, 2007, 11:16:59 pm

Title: Code Completion
Post by: mann on January 04, 2007, 11:16:59 pm
Hallo,

Why does Code Completion not work properly in a C project?

this doesnt work
Code
struct bla
{
int h1;
int h2;
};

int main()
{
struct bla test;
test.
return 0;
}

while this does although it wont compile obviously

Code
struct bla
{
int h1;
int h2;
};

int main()
{
bla test;
test.
return 0;
}

I have tried 2 nightly builds from december 19th and january 3rd. :?:

greetings hokkaido