Bug 16801

Summary: Compiler problem when */ appears in commented String.
Product: [Eclipse Project] JDT Reporter: Simon Gunzenreiner <simon.gunzenreiner>
Component: CoreAssignee: Philipe Mulet <philippe_mulet>
Status: RESOLVED WONTFIX QA Contact:
Severity: normal    
Priority: P2    
Version: 2.0   
Target Milestone: 2.0 M6   
Hardware: PC   
OS: Windows NT   
Whiteboard:

Description Simon Gunzenreiner CLA 2002-05-22 10:16:15 EDT
If the String
   String s = "*/";
is commented by /**  */:
    /**
    String s = "*/";
    */
I get the following compile problem:
String literal is not properly closed by a double-quote

(I am using F1)
Comment 1 Philipe Mulet CLA 2002-05-22 10:27:14 EDT
This is legite compiler behavior (javac reports same error).