Skip to content

Commit ab9a589

Browse files
committed
.
1 parent 5109265 commit ab9a589

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
// Test error cases for dedented string literals
22

3-
object DedentedStringErrors {
3+
object DedentedStringErrors { // nopos-error // nopos-error // nopos-error
44
// Error: No newline after opening quotes
55
val noNewlineAfterOpen = '''content on same line // error
66

7-
// Error: Content not indented enough // error
7+
// Error: Content not indented enough
88
val notIndented = '''
99
content
1010
'''
1111

12-
// Error: Mixed tabs and spaces // error
12+
// Error: Mixed tabs and spaces
1313
val mixedTabsSpaces = '''
1414
tab line
1515
space line
1616
'''
1717

18-
// Error: Unclosed literal // error
18+
// Error: Unclosed literal
1919
val unclosed = '''
2020
some content
2121
}

0 commit comments

Comments
 (0)