Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for BUG1 (0.07 sec)

  1. test/fixedbugs/bug088.dir/bug1.go

    	a1 := P.V1();  // works
    	a2, b2 := P.V2();  // doesn't work
    	_, _, _, _ = a0, a1, a2, b2;
    }
    
    /*
    uetli:~/Source/go1/test/bugs/bug088.dir gri$ 6g bug0.go && 6g bug1.go
    bug1.go:8: shape error across :=
    bug1.go:8: a2: undefined
    bug1.go:8: b2: undefined
    bug1.go:8: illegal types for operand: AS
    	(<(bug0)P.int32>INT32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 550 bytes
    - Viewed (0)
  2. test/fixedbugs/bug106.dir/bug1.go

    // Copyright 2009 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 bug1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 193 bytes
    - Viewed (0)
  3. test/fixedbugs/bug133.dir/bug1.go

    // Copyright 2009 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 bug1
    
    import "./bug0"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 218 bytes
    - Viewed (0)
  4. test/fixedbugs/bug083.dir/bug1.go

    // Copyright 2009 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 bug1
    
    import "./bug0"
    
    // This is expected to fail--t0 is in package bug0 and should not be
    // visible here in package bug1.  The test for failure is in
    // ../bug083.go.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 372 bytes
    - Viewed (0)
  5. test/fixedbugs/bug248.dir/bug1.go

    Yury Smolsky <******@****.***> 1527328670 +0300
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 26 15:20:42 UTC 2018
    - 226 bytes
    - Viewed (0)
  6. test/fixedbugs/bug133.dir/bug2.go

    // license that can be found in the LICENSE file.
    
    package bug2
    
    import _ "./bug1"
    import "./bug0"
    
    type T2 struct { t bug0.T }
    
    func fn(p *T2) int {
    	// This reference should be invalid, because bug0.T.i is local
    	// to package bug0 and should not be visible in package bug1.
    	return p.t.i;	// ERROR "field|undef"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 426 bytes
    - Viewed (0)
  7. src/go/doc/testdata/a.1.golden

    // comment 0  comment 1 
    PACKAGE a
    
    IMPORTPATH
    	testdata/a
    
    FILENAMES
    	testdata/a0.go
    	testdata/a1.go
    
    BUGS .Bugs is now deprecated, please use .Notes instead
    	bug0
    
    	bug1
    
    
    BUGS
    BUG(uid)	bug0
    
    BUG(uid)	bug1
    
    
    NOTES
    NOTE(uid)	
    
    NOTE(foo)	1 of 4 - this is the first line of note 1
    	- note 1 continues on this 2nd line
    	- note 1 continues on this 3rd line
    
    NOTE(foo)	2 of 4
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 688 bytes
    - Viewed (0)
  8. test/fixedbugs/issue54632.go

    // which could cause false positives in deciding when it's safe to
    // transitively inline indirect function calls.
    
    package main
    
    func main() {
    	bug1()
    	bug2(fail)
    }
    
    func bug1() {
    	fn := fail
    	fn = pass
    	fn()
    }
    
    func bug2(fn func()) {
    	fn = pass
    	fn()
    }
    
    func pass() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 24 14:31:08 UTC 2022
    - 609 bytes
    - Viewed (0)
  9. test/fixedbugs/bug248.dir/bug3.go

    		println("bad v0 path", len(s), s)
    		panic("fail")
    	}
    	if s := reflect.TypeOf(v1).PkgPath(); !strings.HasSuffix(s, "/bug1") && !strings.HasPrefix(s, "bug1") {
    		println("bad v1 path", s)
    		panic("fail")
    	}
    
    	// check that dynamic interface check doesn't get confused
    	var i interface{} = t0(0)
    	if _, ok := i.(I1); ok {
    		println("used t0 as i1")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 26 15:20:42 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  10. src/go/doc/testdata/a1.go

    // Copyright 2012 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.
    
    // comment 1
    package a
    
    //BUG(uid): bug1
    
    //TODO(uid): todo1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 240 bytes
    - Viewed (0)
Back to top