godot/modules/gdscript/tests/scripts/parser/features/allow_strings_as_comments.gd

"""
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")