godot/modules/gdscript/tests/scripts/analyzer/errors/typed_dictionary_pass_differently_to_typed.gd

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

func test():
	var differently: Dictionary[float, float] = { 1.0: 0.0 }
	expect_typed(differently)
	print('not ok')