Home | History | Annotate | Download | only in fixedbugs
      1 // errorcheck
      2 
      3 // Copyright 2010 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 // https://code.google.com/p/gofrontend/issues/detail?id=1
      8 
      9 package main
     10 
     11 func f1() {
     12 	a, b := f()	// ERROR "assignment mismatch|does not match"
     13 	_ = a
     14 	_ = b
     15 }
     16 
     17 func f2() {
     18 	var a, b int
     19 	a, b = f()	// ERROR "assignment mismatch|does not match"
     20 	_ = a
     21 	_ = b
     22 }
     23 
     24 func f() int {
     25 	return 1;
     26 }
     27