Is this a bug or am I doing something incorrectly.
For instance i have a code like this:
class Foo()
{
public: Foo(int x){}
};
if I type
Foo foo(4);
and then begin typing foo. code completion works as normal.
However if I used curly braces to initialize foo like this: Foo foo{4}
When I then type foo. there is no suggestions.
I was not able to find the answer to this questions anywhere else. Hoping someone can help me.
Mike