repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
libstdc++: Remove workaround for modules issue [PR113814]
[official-gcc.git]
/
gcc
/
testsuite
/
go.go-torture
/
execute
/
struct-1.go
blob
edf38b2bf06a4fc6795c582b685c42006038a2de
1
package
main
2
3
func
main
() {
4
type
s
struct
{
x
int
; };
5
var
ret s
;
6
ret
.
x
=
1
;
7
if
ret
.
x
!=
1
{
panic
(
0
) }
8
}