We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a4f077 commit 559b5d8Copy full SHA for 559b5d8
src/internal/types/testdata/fixedbugs/issue70549.go
@@ -7,9 +7,9 @@ package p
7
import "math"
8
9
var (
10
- _ = math.Sin
11
- _ = math.SIn /* ERROR "undefined: math.SIn (but have Sin)" */
12
- _ = math.sin /* ERROR "name sin not exported by package math" */
13
- _ = math.Foo /* ERROR "undefined: math.Foo" */
14
- _ = math.foo /* ERROR "undefined: math.foo" */
+ _ = math.Sqrt
+ _ = math.SQrt /* ERROR "undefined: math.SQrt (but have Sqrt)" */
+ _ = math.sqrt /* ERROR "name sqrt not exported by package math" */
+ _ = math.Foo /* ERROR "undefined: math.Foo" */
+ _ = math.foo /* ERROR "undefined: math.foo" */
15
)
0 commit comments