You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
296 B

property ShouldUseEntries
nondet (start iteratingKeys)
start -> start: *
start -> gotKeys: S = "Map.keySet"(M)
gotKeys -> iteratingKeys: I = "Set.iterator"(s)
iteratingKeys -> iteratingKeys: *
iteratingKeys -> gotOneKey: K = "Iterator.next"(i)
gotOneKey -> error: ".*Map.get"(m, k)