summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/completion/index/local_dictionary_keys.gd
blob: 2220cdcc5968b0f09a1eb9f613a5412a66afdf13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
extends Node

var outer

func _ready() -> void:
    var inner

    var dict: Dictionary = {
        "key1": "value",
        "key2": null,
    }

    dict["➡"]