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

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