mirror of
https://github.com/golang/go
synced 2024-11-12 04:40:22 -07:00
23 lines
450 B
Go
23 lines
450 B
Go
|
// $G $D/$F.go || echo BUG should compile
|
|||
|
|
|||
|
// 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 main
|
|||
|
|
|||
|
var digits string;
|
|||
|
|
|||
|
func putint(buf []byte, i, base, val int, digits string) {
|
|||
|
buf[i] = digits[val];
|
|||
|
}
|
|||
|
|
|||
|
func main() {
|
|||
|
}
|
|||
|
|
|||
|
/*
|
|||
|
x.go :
|
|||
|
main.go.c: In function ‘main_putint’:
|
|||
|
main.go.c:41: error: syntax error before ‘)’ token
|
|||
|
*/
|