http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51718
Bug #: 51718
Summary: Regular Expression doesn't match < literal
Classification: Unclassified
Product: gcc
Version: 4.4.5
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: libgcj
AssignedTo: [email protected]
ReportedBy: [email protected]
gcj produces the output
Logical network [DebugOutput<9>] has no load. -> TLogical Tnetwork
[TDebugOutput<T9>] Thas Tno Tload.
Orical's java run on windows produces the output
Logical network [DebugOutput<9>] has no load. -> Logical network
[DebugOutputT9>] has no load.
public class quickTest{
public static void main( String[] args ){
String message = "Logical network [DebugOutput<9>] has no load.";
System.out.println( message + " -> " + message.replaceAll( "\\<", "T" )
);
}
}