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 - Unresolved ids in function call in case of multiline string constants
Summary: Unresolved ids in function call in case of multiline string constants
Status: RESOLVED WORKSFORME
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Model (show other bugs)
Version: 6.x
Hardware: Sun All
: P3 blocker (vote)
Assignee: issues@cnd
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-10-29 12:56 UTC by nnnnnk
Modified: 2009-02-19 20:29 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 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