Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GC_ERROR (0.09 sec)

  1. test/fixedbugs/issue11361.go

    // errorcheck
    
    // Copyright 2016 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.
    
    package a
    
    import "fmt"  // GC_ERROR "imported and not used"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 351 bytes
    - Viewed (0)
  2. test/fixedbugs/bug385_64.go

    // license that can be found in the LICENSE file.
    
    // Issue 2444
    // Issue 4666: issue with arrays of exactly 4GB.
    
    package main
    
    var z [10 << 20]byte
    
    func main() { // GC_ERROR "stack frame too large"
    	// seq 1 206 | sed 's/.*/	var x& [10<<20]byte/'
    	// seq 1 206 | sed 's/.*/	z = x&/'
    	var x1 [10<<20]byte
    	var x2 [10<<20]byte
    	var x3 [10<<20]byte
    	var x4 [10<<20]byte
    	var x5 [10<<20]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top