Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.31
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
go /
misc /
cgo /
test /
testdata /
issue27340 /
[ HOME SHELL ]
Name
Size
Permission
Action
a.go
1.2
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : a.go
// Copyright 2018 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. // Failed to resolve typedefs consistently. // No runtime test; just make sure it compiles. // In separate directory to isolate #pragma GCC diagnostic. package issue27340 // We use the #pragma to avoid a compiler warning about incompatible // pointer types, because we generate code passing a struct ptr rather // than using the typedef. This warning is expected and does not break // a normal build. // We can only disable -Wincompatible-pointer-types starting with GCC 5. // #if __GNU_MAJOR__ >= 5 // // #pragma GCC diagnostic ignored "-Wincompatible-pointer-types" // // typedef struct { // int a; // } issue27340Struct, *issue27340Ptr; // // static void issue27340CFunc(issue27340Ptr p) {} // // #else /* _GNU_MAJOR_ < 5 */ // // typedef struct { // int a; // } issue27340Struct; // // static issue27340Struct* issue27340Ptr(issue27340Struct* p) { return p; } // // static void issue27340CFunc(issue27340Struct *p) {} // #endif /* _GNU_MAJOR_ < 5 */ import "C" func Issue27340GoFunc() { var s C.issue27340Struct C.issue27340CFunc(C.issue27340Ptr(&s)) }
Close