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

# Empty line:
	  

# Comment line:
	  # Comment.

func test():
	print(1)

	if true:

	# Empty line:
	  

		print(2)

	# Comment line:
	  # Comment.

	print(3)