From 4a6f421b80717cf2bd370bb0f92992370a6adda8 Mon Sep 17 00:00:00 2001 From: David Halter Date: Thu, 15 Aug 2013 11:33:32 +0430 Subject: [PATCH] test for goto in loops that use e.g. empty arrays as input, #283 --- test/completion/goto.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/completion/goto.py b/test/completion/goto.py index 95973def..549bd06d 100644 --- a/test/completion/goto.py +++ b/test/completion/goto.py @@ -167,3 +167,7 @@ for i in range(1): for key, value in [(1,2)]: #! ['for key,value in [(1...'] key + +for i in []: + #! ['for i in []: i'] + i