mirror of
https://github.com/golang/go
synced 2024-11-18 23:05:06 -07:00
7 lines
99 B
Go
7 lines
99 B
Go
|
package bad
|
||
|
|
||
|
func random2(y int) int {
|
||
|
x := 6 //@diag("x", "x declared but not used")
|
||
|
return y
|
||
|
}
|