godot/modules/gdscript/tests/scripts/runtime/errors/typed_dictionary_pass_basic_to_typed.gd

func expect_typed(typed: Dictionary[int, int]):
	print(typed.size())

func test():
	var basic := { 1: 1 }
	expect_typed(basic)
	print('not ok')