Files
Stirling-PDF/scripts/lint/fixtures/strings.java
T

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

12 lines
275 B
Java
Raw 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 = '/';
}
}