summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/parser/features/allow_strings_as_comments.gd
blob: 3ecd65ad9cdfd3fde1e11e29b2b27ad127d42821 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
"""
This is a comment.
"""

@tool

"""
This is also a comment.
"""

extends RefCounted

'''
This is a comment too.
'''

func test():
	"""
	This too is a comment.
	"""
	print("ok")