Plan 9 from Bell Labs’s /usr/web/sources/contrib/ericvh/go-plan9/test/fixedbugs/bug226.dir/y.go

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


// 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 y

import "./x"

func f() {
	ok := new(x.T);
	var ok1 x.T;
	ok2 := &ok1;
	ok3 := &x.T{};
	ok4 := &x.T{Y:2};
	_ = x.T{};
	_ = x.T{Y:2};
	
	ok1.M();	// ERROR "assignment.*T"
	bad1 := *ok;	// ERROR "assignment.*T"
	bad2 := ok1;	// ERROR "assignment.*T"
	*ok4 = ok1;	// ERROR "assignment.*T"
	*ok4 = *ok2;	// ERROR "assignment.*T"
	ok1 = *ok4;	// ERROR "assignment.*T"
	_ = bad1;
	_ = bad2;
	_ = ok4;
	_ = ok3;
	_ = ok2;
	_ = ok1;
	_ = ok;
}

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.