Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ExpressionList (0.53 sec)

  1. test/fixedbugs/gcc61253.go

    // Copyright 2014 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.
    
    // PR61253: gccgo incorrectly parsed the
    // `RecvStmt = ExpressionList "=" RecvExpr` production.
    
    package main
    
    func main() {
    	c := make(chan int)
    	v := new(int)
    	b := new(bool)
    	select {
    	case (*v), (*b) = <-c:
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 390 bytes
    - Viewed (0)
Back to top