issue30527.go 346 B

1234567891011121314
  1. // Copyright 2019 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // Issue 30527: function call rewriting casts untyped
  5. // constants to int because of ":=" usage.
  6. package cgotest
  7. import "cgotest/issue30527"
  8. func issue30527G() {
  9. issue30527.G(nil)
  10. }