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 /
src /
go /
types /
testdata /
[ HOME SHELL ]
Name
Size
Permission
Action
blank.src
203
B
-rw-r--r--
builtins.src
23.77
KB
-rw-r--r--
const0.src
8.32
KB
-rw-r--r--
const1.src
8.04
KB
-rw-r--r--
constdecl.src
3.02
KB
-rw-r--r--
conversions.src
1.71
KB
-rw-r--r--
conversions2.src
5.07
KB
-rw-r--r--
cycles.src
2.79
KB
-rw-r--r--
cycles1.src
781
B
-rw-r--r--
cycles2.src
1.21
KB
-rw-r--r--
cycles3.src
675
B
-rw-r--r--
cycles4.src
1.76
KB
-rw-r--r--
cycles5.src
2.91
KB
-rw-r--r--
decls0.src
3.91
KB
-rw-r--r--
decls1.src
3.57
KB
-rw-r--r--
decls2a.src
3.11
KB
-rw-r--r--
decls2b.src
1.87
KB
-rw-r--r--
decls3.src
4.17
KB
-rw-r--r--
decls4.src
2.99
KB
-rw-r--r--
decls5.src
363
B
-rw-r--r--
errors.src
1.9
KB
-rw-r--r--
expr0.src
3.39
KB
-rw-r--r--
expr1.src
2.57
KB
-rw-r--r--
expr2.src
4.63
KB
-rw-r--r--
expr3.src
14.87
KB
-rw-r--r--
gotos.src
5.77
KB
-rw-r--r--
importC.src
1.21
KB
-rw-r--r--
importdecl0a.src
1.24
KB
-rw-r--r--
importdecl0b.src
1000
B
-rw-r--r--
importdecl1a.src
521
B
-rw-r--r--
importdecl1b.src
260
B
-rw-r--r--
init0.src
1.91
KB
-rw-r--r--
init1.src
1.46
KB
-rw-r--r--
init2.src
3.51
KB
-rw-r--r--
issue23203a.src
306
B
-rw-r--r--
issue23203b.src
306
B
-rw-r--r--
issue25008a.src
260
B
-rw-r--r--
issue25008b.src
198
B
-rw-r--r--
issue26390.src
241
B
-rw-r--r--
issue28251.src
1.23
KB
-rw-r--r--
issue6977.src
2.33
KB
-rw-r--r--
issues.src
9.83
KB
-rw-r--r--
labels.src
3.25
KB
-rw-r--r--
literals.src
2.35
KB
-rw-r--r--
methodsets.src
3.16
KB
-rw-r--r--
shifts.src
12.02
KB
-rw-r--r--
stmt0.src
17.79
KB
-rw-r--r--
stmt1.src
3.31
KB
-rw-r--r--
vardecl.src
5.27
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : issue6977.src
// Copyright 2019 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 p import "io" // Alan's initial report. type I interface { f(); String() string } type J interface { g(); String() string } type IJ1 = interface { I; J } type IJ2 = interface { f(); g(); String() string } var _ = (*IJ1)(nil) == (*IJ2)(nil) // static assert that IJ1 and IJ2 are identical types // The canonical example. type ReadWriteCloser interface { io.ReadCloser; io.WriteCloser } // Some more cases. type M interface { m() } type M32 interface { m() int32 } type M64 interface { m() int64 } type U1 interface { m() } type U2 interface { m(); M } type U3 interface { M; m() } type U4 interface { M; M; M } type U5 interface { U1; U2; U3; U4 } type U6 interface { m(); m /* ERROR duplicate method */ () } type U7 interface { M32 /* ERROR duplicate method */ ; m() } type U8 interface { m(); M32 /* ERROR duplicate method */ } type U9 interface { M32; M64 /* ERROR duplicate method */ } // Verify that repeated embedding of the same interface(s) // eliminates duplicate methods early (rather than at the // end) to prevent exponential memory and time use. // Without early elimination, computing T29 may take dozens // of minutes. type ( T0 interface { m() } T1 interface { T0; T0 } T2 interface { T1; T1 } T3 interface { T2; T2 } T4 interface { T3; T3 } T5 interface { T4; T4 } T6 interface { T5; T5 } T7 interface { T6; T6 } T8 interface { T7; T7 } T9 interface { T8; T8 } T10 interface { T9; T9 } T11 interface { T10; T10 } T12 interface { T11; T11 } T13 interface { T12; T12 } T14 interface { T13; T13 } T15 interface { T14; T14 } T16 interface { T15; T15 } T17 interface { T16; T16 } T18 interface { T17; T17 } T19 interface { T18; T18 } T20 interface { T19; T19 } T21 interface { T20; T20 } T22 interface { T21; T21 } T23 interface { T22; T22 } T24 interface { T23; T23 } T25 interface { T24; T24 } T26 interface { T25; T25 } T27 interface { T26; T26 } T28 interface { T27; T27 } T29 interface { T28; T28 } ) // Verify that m is present. var x T29 var _ = x.m
Close