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
11a978ad
Commit
11a978ad
authored
Oct 29, 2008
by
Russ Cox
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shift bug in constant evaluator
R=ken OCL=18031 CL=18031
parent
4a3ce5f1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
0 deletions
+23
-0
bug114.go
test/bugs/bug114.go
+23
-0
No files found.
test/bugs/bug114.go
0 → 100644
View file @
11a978ad
// $G $D/$F.go && $L $F.$A && (./$A.out || echo BUG: bug114 failed)
// 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
const
B32
=
1
<<
32
-
1
const
C32
=
(
-
1
)
&
((
1
<<
32
)
-
1
)
const
D32
=
^
0
func
main
()
{
if
B32
!=
0xFFFFFFFF
{
panicln
(
"1<<32 - 1 is"
,
B32
,
"should be"
,
0xFFFFFFFF
)
}
if
C32
!=
0xFFFFFFFF
{
panicln
(
"(-1) & ((1<<32) - 1) is"
,
C32
,
"should be"
,
0xFFFFFFFF
)
}
if
D32
!=
-
1
{
panicln
(
"^0 is"
,
D32
,
"should be"
,
-
1
)
}
}
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