rewrite1.input 248 B

1234567891011121314
  1. //gofmt -r=Foo->Bar
  2. // Copyright 2011 The Go Authors. All rights reserved.
  3. // Use of this source code is governed by a BSD-style
  4. // license that can be found in the LICENSE file.
  5. package main
  6. type Foo int
  7. func main() {
  8. var a Foo
  9. println(a)
  10. }