Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 315 for Toto (0.28 sec)

  1. test/fixedbugs/issue45947.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    func f() {
    	_ = func() func() {
    		return func() {
    		l:
    			goto l
    		}
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 05 18:03:32 UTC 2021
    - 259 bytes
    - Viewed (0)
  2. test/fixedbugs/issue7023.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 7023: corrupted export data when an inlined function
    // contains a goto.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 10 00:33:24 UTC 2014
    - 274 bytes
    - Viewed (0)
  3. test/fixedbugs/issue15838.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test cases for issue #15838, and related failures.
    // Make sure the importer correctly sets up nodes for
    // label decls, goto, continue, break, and fallthrough
    // statements.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 26 00:32:03 UTC 2016
    - 370 bytes
    - Viewed (0)
  4. test/fixedbugs/issue19699.dir/a.go

    // 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.
    
    package a
    
    func F() {
    l1:
    	if false {
    		goto l1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 17:13:30 UTC 2017
    - 213 bytes
    - Viewed (0)
  5. src/go/printer/testdata/statements.golden

    AnOverlongLabel:
    	_ = 0
    
    	if true {
    		_ = 0
    	}
    	_ = 0
    
    L:
    	_ = 0
    }
    
    func _() {
    	for {
    		goto L
    	}
    L:
    
    	MoreCode()
    }
    
    func _() {
    	for {
    		goto L
    	}
    L:	// A comment on the same line as the label, followed by a single empty line.
    	// Known bug: There may be more than one empty line before MoreCode()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 12 18:18:12 UTC 2014
    - 8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/labels.go

    	// If there are any forward jumps left, no label was found for
    	// the corresponding goto statements. Either those labels were
    	// never defined, or they are inside blocks and not reachable
    	// for the respective gotos.
    	for _, jmp := range fwdJumps {
    		var msg string
    		var code Code
    		name := jmp.Label.Value
    		if alt := all.Lookup(name); alt != nil {
    			msg = "goto %s jumps into block"
    			code = JumpIntoBlock
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. test/fixedbugs/bug179.go

    L:
    	for {
    		for {
    			break L2    // ERROR "L2"
    			continue L2 // ERROR "L2"
    		}
    	}
    
    L1:
    	x := 1
    	_ = x
    	for {
    		break L1    // ERROR "L1"
    		continue L1 // ERROR "L1"
    	}
    
    	goto L
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 383 bytes
    - Viewed (0)
  8. test/fixedbugs/issue45948.go

    // license that can be found in the LICENSE file.
    
    // Issue 45948: assert in debug generation for degenerate
    // function with infinite loop.
    
    package p
    
    func f(p int) {
    L:
    	goto L
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 05 01:47:58 UTC 2021
    - 307 bytes
    - Viewed (0)
  9. test/fixedbugs/issue44465.go

    // This code caused an internal consistency error due to a bad shortcircuit optimization.
    
    package p
    
    func f() {
    	var b bool
    	if b {
    		b = true
    	}
    l:
    	for !b {
    		b = true
    		goto l
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 22 20:27:09 UTC 2021
    - 375 bytes
    - Viewed (0)
  10. test/fixedbugs/issue4748.go

    // license that can be found in the LICENSE file.
    
    // Issue 4748.
    // This program used to complain because inlining created two exit labels.
    
    package main
    
    func jump() {
            goto exit
    exit:
            return
    }
    func main() {
            jump()
            jump()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 374 bytes
    - Viewed (0)
Back to top