Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
275 B
Java
Raw Permalink Normal View History

package fixtures;
class Strings {
// A `//` inside a literal is not a comment, and neither is an escaped quote.
void urls() {
String docs = "https://example.com/guide";
String quoted = "a \" then // not a comment";
char slash = '/';
}
}