This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 250057 - Completion for functions with lambdas
Summary: Completion for functions with lambdas
Status: NEW
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Completion (show other bugs)
Version: 8.0.2
Hardware: PC All
: P3 normal (vote)
Assignee: Vladimir Kvashin
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-01-27 19:23 UTC by jonyrock
Modified: 2016-10-31 11:08 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description jonyrock 2015-01-27 19:23:50 UTC
Suppose we have a 
class A {
  void setFun(std::function<void()> fun);
}

and now we go to A.cpp, then type setF... and netbeans propose to complete 

void A::foo(std::function<void()> fun)

but we get void A::foo(std::function<void()()> fun) instead. Please look at the second wrong pair of brackets.