mirror of
https://github.com/golang/go
synced 2024-11-26 17:56:55 -07:00
0c374e9f89
- keep track of type alias (type T1 T0) so we can print the proper type name R=r OCL=13688 CL=13688
20 lines
325 B
Go
Executable File
20 lines
325 B
Go
Executable File
// 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.
|
|
|
|
// Base for the decls.go tests.
|
|
|
|
package base
|
|
|
|
type Foo int
|
|
|
|
type Bar *float;
|
|
|
|
type Node struct {
|
|
left, right *Node;
|
|
val bool;
|
|
f Foo
|
|
}
|
|
|
|
export Foo, Bar, Node
|