1// compile 2 3// Copyright 2017 The Go Authors. All rights reserved. 4// Use of this source code is governed by a BSD-style 5// license that can be found in the LICENSE file. 6 7// The gccgo compiler crashed while compiling a function that returned 8// multiple zero-sized structs. 9// https://gcc.gnu.org/PR80226. 10 11package p 12 13type S struct{} 14 15func F() (S, S) { 16 return S{}, S{} 17} 18