From 0849dfd4a3f72182af0702bec22ffa8c772c3695 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Thu, 1 Feb 2018 21:38:49 -0800 Subject: [PATCH] test: add new test that gccgo failed to compile Updates #22305 Change-Id: I0e6bbd880599fc1b70d0378b746d162d4a846c65 Reviewed-on: https://go-review.googlesource.com/91556 Run-TryBot: Ian Lance Taylor TryBot-Result: Gobot Gobot Reviewed-by: Brad Fitzpatrick --- test/fixedbugs/issue22305.go | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 test/fixedbugs/issue22305.go diff --git a/test/fixedbugs/issue22305.go b/test/fixedbugs/issue22305.go new file mode 100644 index 0000000000..ec432f9ae8 --- /dev/null +++ b/test/fixedbugs/issue22305.go @@ -0,0 +1,15 @@ +// compile + +// Copyright 2017 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Issue 22305: gccgo failed to compile this file. + +package main + +var F func() [0]func() +var i = 2 +var B = F()[i] + +func main() {}