summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/analyzer/warnings/onready_with_export.gd
blob: 0b358ca5f27ea4ea28116b13216b2396d397a39e (plain)
1
2
3
4
5
6
extends Node

@onready @export var conflict = ""

func test():
	print("warn")