Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
8fb6c3ac
Commit
8fb6c3ac
authored
Jul 16, 2013
by
Alan Donovan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test: invert incorrect condition.
R=gri CC=golang-dev
https://golang.org/cl/11359043
parent
1d55685e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
cmp.go
test/cmp.go
+2
-2
No files found.
test/cmp.go
View file @
8fb6c3ac
...
...
@@ -43,8 +43,8 @@ func main() {
var
d
string
=
"hel"
// try to get different pointer
d
=
d
+
"lo"
//
exp
/ssa/interp can't handle unsafe.Pointer.
if
os
.
Getenv
(
"GOSSAINTERP"
)
!
=
""
{
//
go.tools
/ssa/interp can't handle unsafe.Pointer.
if
os
.
Getenv
(
"GOSSAINTERP"
)
=
=
""
{
if
stringptr
(
c
)
==
stringptr
(
d
)
{
panic
(
"compiler too smart -- got same string"
)
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment