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 151707

Summary: Unresolved ids in function call in case of multiline string constants
Product: cnd Reporter: nnnnnk <nnnnnk>
Component: Code ModelAssignee: issues@cnd <issues>
Status: RESOLVED WORKSFORME    
Severity: blocker    
Priority: P3    
Version: 6.x   
Hardware: Sun   
OS: All   
Issue Type: DEFECT Exception Reporter:

Description nnnnnk 2008-10-29 12:56:00 UTC
Example:
void foo(char*, int i) {
}

int main() {
    int k;
    foo("11111\
        1", k); // k is unresolved
    return 0;
}
Comment 1 nnnnnk 2009-02-09 17:04:48 UTC
works for me