aboutsummaryrefslogtreecommitdiff
path: root/test/pretty/resource/after/TextBlocks.java
blob: 4d2fc27267f9f998b413d903c6d5a053dd9618d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
public class TextBlocks {
	private String example = """
		This should not be indented.
		line 2
		line 3
		""";
	
	private String ex2 = """
			This should be though.
		""";
	
	private String ex3 = "This is a simple\nstring";
	
	private String ex4 = """
		""";
	
	private String bizarroDent = """
		foo
		    bar""" + "hey" + """
		weird!""";
	
	private String stringFolding = "hmmm" + """
		line1
			line2""";
}