langtools/test/tools/javac/limits/NumArgs1.java
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 10 06bc494ca11e
child 5520 86e4b9a9da40
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
06bc494ca11e Initial load
duke
parents:
diff changeset
     2
 * Copyright 2002 Sun Microsystems, Inc.  All Rights Reserved.
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
06bc494ca11e Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
06bc494ca11e Initial load
duke
parents:
diff changeset
    21
 * have any questions.
06bc494ca11e Initial load
duke
parents:
diff changeset
    22
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    23
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
/*
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
 * @test
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
 * @bug 4309152
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
 * @summary Compiler silently generates bytecode that exceeds VM limits
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
 * @author gafter
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
 * @compile/fail NumArgs1.java
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
class NumArgs1 {
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
    void f(
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
           // T1 this,
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
           int x2,
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
           int x3,
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
           int x4,
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
           int x5,
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
           int x6,
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
           int x7,
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
           int x8,
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
           int x9,
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
           int x10,
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
           int x11,
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
           int x12,
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
           int x13,
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
           int x14,
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
           int x15,
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
           int x16,
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
           int x17,
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
           int x18,
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
           int x19,
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
           int x20,
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
           int x21,
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
           int x22,
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
           int x23,
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
           int x24,
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
           int x25,
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
           int x26,
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
           int x27,
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
           int x28,
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
           int x29,
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
           int x30,
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
           int x31,
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
           int x32,
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
           int x33,
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
           int x34,
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
           int x35,
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
           int x36,
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
           int x37,
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
           int x38,
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
           int x39,
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
           int x40,
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
           int x41,
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
           int x42,
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
           int x43,
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
           int x44,
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
           int x45,
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
           int x46,
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
           int x47,
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
           int x48,
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
           int x49,
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
           int x50,
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
           int x51,
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
           int x52,
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
           int x53,
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
           int x54,
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
           int x55,
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
           int x56,
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
           int x57,
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
           int x58,
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
           int x59,
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
           int x60,
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
           int x61,
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
           int x62,
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
           int x63,
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
           int x64,
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
           int x65,
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
           int x66,
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
           int x67,
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
           int x68,
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
           int x69,
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
           int x70,
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
           int x71,
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
           int x72,
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
           int x73,
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
           int x74,
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
           int x75,
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
           int x76,
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
           int x77,
06bc494ca11e Initial load
duke
parents:
diff changeset
   112
           int x78,
06bc494ca11e Initial load
duke
parents:
diff changeset
   113
           int x79,
06bc494ca11e Initial load
duke
parents:
diff changeset
   114
           int x80,
06bc494ca11e Initial load
duke
parents:
diff changeset
   115
           int x81,
06bc494ca11e Initial load
duke
parents:
diff changeset
   116
           int x82,
06bc494ca11e Initial load
duke
parents:
diff changeset
   117
           int x83,
06bc494ca11e Initial load
duke
parents:
diff changeset
   118
           int x84,
06bc494ca11e Initial load
duke
parents:
diff changeset
   119
           int x85,
06bc494ca11e Initial load
duke
parents:
diff changeset
   120
           int x86,
06bc494ca11e Initial load
duke
parents:
diff changeset
   121
           int x87,
06bc494ca11e Initial load
duke
parents:
diff changeset
   122
           int x88,
06bc494ca11e Initial load
duke
parents:
diff changeset
   123
           int x89,
06bc494ca11e Initial load
duke
parents:
diff changeset
   124
           int x90,
06bc494ca11e Initial load
duke
parents:
diff changeset
   125
           int x91,
06bc494ca11e Initial load
duke
parents:
diff changeset
   126
           int x92,
06bc494ca11e Initial load
duke
parents:
diff changeset
   127
           int x93,
06bc494ca11e Initial load
duke
parents:
diff changeset
   128
           int x94,
06bc494ca11e Initial load
duke
parents:
diff changeset
   129
           int x95,
06bc494ca11e Initial load
duke
parents:
diff changeset
   130
           int x96,
06bc494ca11e Initial load
duke
parents:
diff changeset
   131
           int x97,
06bc494ca11e Initial load
duke
parents:
diff changeset
   132
           int x98,
06bc494ca11e Initial load
duke
parents:
diff changeset
   133
           int x99,
06bc494ca11e Initial load
duke
parents:
diff changeset
   134
           int x100,
06bc494ca11e Initial load
duke
parents:
diff changeset
   135
           int x101,
06bc494ca11e Initial load
duke
parents:
diff changeset
   136
           int x102,
06bc494ca11e Initial load
duke
parents:
diff changeset
   137
           int x103,
06bc494ca11e Initial load
duke
parents:
diff changeset
   138
           int x104,
06bc494ca11e Initial load
duke
parents:
diff changeset
   139
           int x105,
06bc494ca11e Initial load
duke
parents:
diff changeset
   140
           int x106,
06bc494ca11e Initial load
duke
parents:
diff changeset
   141
           int x107,
06bc494ca11e Initial load
duke
parents:
diff changeset
   142
           int x108,
06bc494ca11e Initial load
duke
parents:
diff changeset
   143
           int x109,
06bc494ca11e Initial load
duke
parents:
diff changeset
   144
           int x110,
06bc494ca11e Initial load
duke
parents:
diff changeset
   145
           int x111,
06bc494ca11e Initial load
duke
parents:
diff changeset
   146
           int x112,
06bc494ca11e Initial load
duke
parents:
diff changeset
   147
           int x113,
06bc494ca11e Initial load
duke
parents:
diff changeset
   148
           int x114,
06bc494ca11e Initial load
duke
parents:
diff changeset
   149
           int x115,
06bc494ca11e Initial load
duke
parents:
diff changeset
   150
           int x116,
06bc494ca11e Initial load
duke
parents:
diff changeset
   151
           int x117,
06bc494ca11e Initial load
duke
parents:
diff changeset
   152
           int x118,
06bc494ca11e Initial load
duke
parents:
diff changeset
   153
           int x119,
06bc494ca11e Initial load
duke
parents:
diff changeset
   154
           int x120,
06bc494ca11e Initial load
duke
parents:
diff changeset
   155
           int x121,
06bc494ca11e Initial load
duke
parents:
diff changeset
   156
           int x122,
06bc494ca11e Initial load
duke
parents:
diff changeset
   157
           int x123,
06bc494ca11e Initial load
duke
parents:
diff changeset
   158
           int x124,
06bc494ca11e Initial load
duke
parents:
diff changeset
   159
           int x125,
06bc494ca11e Initial load
duke
parents:
diff changeset
   160
           int x126,
06bc494ca11e Initial load
duke
parents:
diff changeset
   161
           int x127,
06bc494ca11e Initial load
duke
parents:
diff changeset
   162
           int x128,
06bc494ca11e Initial load
duke
parents:
diff changeset
   163
           int x129,
06bc494ca11e Initial load
duke
parents:
diff changeset
   164
           int x130,
06bc494ca11e Initial load
duke
parents:
diff changeset
   165
           int x131,
06bc494ca11e Initial load
duke
parents:
diff changeset
   166
           int x132,
06bc494ca11e Initial load
duke
parents:
diff changeset
   167
           int x133,
06bc494ca11e Initial load
duke
parents:
diff changeset
   168
           int x134,
06bc494ca11e Initial load
duke
parents:
diff changeset
   169
           int x135,
06bc494ca11e Initial load
duke
parents:
diff changeset
   170
           int x136,
06bc494ca11e Initial load
duke
parents:
diff changeset
   171
           int x137,
06bc494ca11e Initial load
duke
parents:
diff changeset
   172
           int x138,
06bc494ca11e Initial load
duke
parents:
diff changeset
   173
           int x139,
06bc494ca11e Initial load
duke
parents:
diff changeset
   174
           int x140,
06bc494ca11e Initial load
duke
parents:
diff changeset
   175
           int x141,
06bc494ca11e Initial load
duke
parents:
diff changeset
   176
           int x142,
06bc494ca11e Initial load
duke
parents:
diff changeset
   177
           int x143,
06bc494ca11e Initial load
duke
parents:
diff changeset
   178
           int x144,
06bc494ca11e Initial load
duke
parents:
diff changeset
   179
           int x145,
06bc494ca11e Initial load
duke
parents:
diff changeset
   180
           int x146,
06bc494ca11e Initial load
duke
parents:
diff changeset
   181
           int x147,
06bc494ca11e Initial load
duke
parents:
diff changeset
   182
           int x148,
06bc494ca11e Initial load
duke
parents:
diff changeset
   183
           int x149,
06bc494ca11e Initial load
duke
parents:
diff changeset
   184
           int x150,
06bc494ca11e Initial load
duke
parents:
diff changeset
   185
           int x151,
06bc494ca11e Initial load
duke
parents:
diff changeset
   186
           int x152,
06bc494ca11e Initial load
duke
parents:
diff changeset
   187
           int x153,
06bc494ca11e Initial load
duke
parents:
diff changeset
   188
           int x154,
06bc494ca11e Initial load
duke
parents:
diff changeset
   189
           int x155,
06bc494ca11e Initial load
duke
parents:
diff changeset
   190
           int x156,
06bc494ca11e Initial load
duke
parents:
diff changeset
   191
           int x157,
06bc494ca11e Initial load
duke
parents:
diff changeset
   192
           int x158,
06bc494ca11e Initial load
duke
parents:
diff changeset
   193
           int x159,
06bc494ca11e Initial load
duke
parents:
diff changeset
   194
           int x160,
06bc494ca11e Initial load
duke
parents:
diff changeset
   195
           int x161,
06bc494ca11e Initial load
duke
parents:
diff changeset
   196
           int x162,
06bc494ca11e Initial load
duke
parents:
diff changeset
   197
           int x163,
06bc494ca11e Initial load
duke
parents:
diff changeset
   198
           int x164,
06bc494ca11e Initial load
duke
parents:
diff changeset
   199
           int x165,
06bc494ca11e Initial load
duke
parents:
diff changeset
   200
           int x166,
06bc494ca11e Initial load
duke
parents:
diff changeset
   201
           int x167,
06bc494ca11e Initial load
duke
parents:
diff changeset
   202
           int x168,
06bc494ca11e Initial load
duke
parents:
diff changeset
   203
           int x169,
06bc494ca11e Initial load
duke
parents:
diff changeset
   204
           int x170,
06bc494ca11e Initial load
duke
parents:
diff changeset
   205
           int x171,
06bc494ca11e Initial load
duke
parents:
diff changeset
   206
           int x172,
06bc494ca11e Initial load
duke
parents:
diff changeset
   207
           int x173,
06bc494ca11e Initial load
duke
parents:
diff changeset
   208
           int x174,
06bc494ca11e Initial load
duke
parents:
diff changeset
   209
           int x175,
06bc494ca11e Initial load
duke
parents:
diff changeset
   210
           int x176,
06bc494ca11e Initial load
duke
parents:
diff changeset
   211
           int x177,
06bc494ca11e Initial load
duke
parents:
diff changeset
   212
           int x178,
06bc494ca11e Initial load
duke
parents:
diff changeset
   213
           int x179,
06bc494ca11e Initial load
duke
parents:
diff changeset
   214
           int x180,
06bc494ca11e Initial load
duke
parents:
diff changeset
   215
           int x181,
06bc494ca11e Initial load
duke
parents:
diff changeset
   216
           int x182,
06bc494ca11e Initial load
duke
parents:
diff changeset
   217
           int x183,
06bc494ca11e Initial load
duke
parents:
diff changeset
   218
           int x184,
06bc494ca11e Initial load
duke
parents:
diff changeset
   219
           int x185,
06bc494ca11e Initial load
duke
parents:
diff changeset
   220
           int x186,
06bc494ca11e Initial load
duke
parents:
diff changeset
   221
           int x187,
06bc494ca11e Initial load
duke
parents:
diff changeset
   222
           int x188,
06bc494ca11e Initial load
duke
parents:
diff changeset
   223
           int x189,
06bc494ca11e Initial load
duke
parents:
diff changeset
   224
           int x190,
06bc494ca11e Initial load
duke
parents:
diff changeset
   225
           int x191,
06bc494ca11e Initial load
duke
parents:
diff changeset
   226
           int x192,
06bc494ca11e Initial load
duke
parents:
diff changeset
   227
           int x193,
06bc494ca11e Initial load
duke
parents:
diff changeset
   228
           int x194,
06bc494ca11e Initial load
duke
parents:
diff changeset
   229
           int x195,
06bc494ca11e Initial load
duke
parents:
diff changeset
   230
           int x196,
06bc494ca11e Initial load
duke
parents:
diff changeset
   231
           int x197,
06bc494ca11e Initial load
duke
parents:
diff changeset
   232
           int x198,
06bc494ca11e Initial load
duke
parents:
diff changeset
   233
           int x199,
06bc494ca11e Initial load
duke
parents:
diff changeset
   234
           int x200,
06bc494ca11e Initial load
duke
parents:
diff changeset
   235
           int x201,
06bc494ca11e Initial load
duke
parents:
diff changeset
   236
           int x202,
06bc494ca11e Initial load
duke
parents:
diff changeset
   237
           int x203,
06bc494ca11e Initial load
duke
parents:
diff changeset
   238
           int x204,
06bc494ca11e Initial load
duke
parents:
diff changeset
   239
           int x205,
06bc494ca11e Initial load
duke
parents:
diff changeset
   240
           int x206,
06bc494ca11e Initial load
duke
parents:
diff changeset
   241
           int x207,
06bc494ca11e Initial load
duke
parents:
diff changeset
   242
           int x208,
06bc494ca11e Initial load
duke
parents:
diff changeset
   243
           int x209,
06bc494ca11e Initial load
duke
parents:
diff changeset
   244
           int x210,
06bc494ca11e Initial load
duke
parents:
diff changeset
   245
           int x211,
06bc494ca11e Initial load
duke
parents:
diff changeset
   246
           int x212,
06bc494ca11e Initial load
duke
parents:
diff changeset
   247
           int x213,
06bc494ca11e Initial load
duke
parents:
diff changeset
   248
           int x214,
06bc494ca11e Initial load
duke
parents:
diff changeset
   249
           int x215,
06bc494ca11e Initial load
duke
parents:
diff changeset
   250
           int x216,
06bc494ca11e Initial load
duke
parents:
diff changeset
   251
           int x217,
06bc494ca11e Initial load
duke
parents:
diff changeset
   252
           int x218,
06bc494ca11e Initial load
duke
parents:
diff changeset
   253
           int x219,
06bc494ca11e Initial load
duke
parents:
diff changeset
   254
           int x220,
06bc494ca11e Initial load
duke
parents:
diff changeset
   255
           int x221,
06bc494ca11e Initial load
duke
parents:
diff changeset
   256
           int x222,
06bc494ca11e Initial load
duke
parents:
diff changeset
   257
           int x223,
06bc494ca11e Initial load
duke
parents:
diff changeset
   258
           int x224,
06bc494ca11e Initial load
duke
parents:
diff changeset
   259
           int x225,
06bc494ca11e Initial load
duke
parents:
diff changeset
   260
           int x226,
06bc494ca11e Initial load
duke
parents:
diff changeset
   261
           int x227,
06bc494ca11e Initial load
duke
parents:
diff changeset
   262
           int x228,
06bc494ca11e Initial load
duke
parents:
diff changeset
   263
           int x229,
06bc494ca11e Initial load
duke
parents:
diff changeset
   264
           int x230,
06bc494ca11e Initial load
duke
parents:
diff changeset
   265
           int x231,
06bc494ca11e Initial load
duke
parents:
diff changeset
   266
           int x232,
06bc494ca11e Initial load
duke
parents:
diff changeset
   267
           int x233,
06bc494ca11e Initial load
duke
parents:
diff changeset
   268
           int x234,
06bc494ca11e Initial load
duke
parents:
diff changeset
   269
           int x235,
06bc494ca11e Initial load
duke
parents:
diff changeset
   270
           int x236,
06bc494ca11e Initial load
duke
parents:
diff changeset
   271
           int x237,
06bc494ca11e Initial load
duke
parents:
diff changeset
   272
           int x238,
06bc494ca11e Initial load
duke
parents:
diff changeset
   273
           int x239,
06bc494ca11e Initial load
duke
parents:
diff changeset
   274
           int x240,
06bc494ca11e Initial load
duke
parents:
diff changeset
   275
           int x241,
06bc494ca11e Initial load
duke
parents:
diff changeset
   276
           int x242,
06bc494ca11e Initial load
duke
parents:
diff changeset
   277
           int x243,
06bc494ca11e Initial load
duke
parents:
diff changeset
   278
           int x244,
06bc494ca11e Initial load
duke
parents:
diff changeset
   279
           int x245,
06bc494ca11e Initial load
duke
parents:
diff changeset
   280
           int x246,
06bc494ca11e Initial load
duke
parents:
diff changeset
   281
           int x247,
06bc494ca11e Initial load
duke
parents:
diff changeset
   282
           int x248,
06bc494ca11e Initial load
duke
parents:
diff changeset
   283
           int x249,
06bc494ca11e Initial load
duke
parents:
diff changeset
   284
           int x250,
06bc494ca11e Initial load
duke
parents:
diff changeset
   285
           int x251,
06bc494ca11e Initial load
duke
parents:
diff changeset
   286
           int x252,
06bc494ca11e Initial load
duke
parents:
diff changeset
   287
           int x253,
06bc494ca11e Initial load
duke
parents:
diff changeset
   288
           int x254,
06bc494ca11e Initial load
duke
parents:
diff changeset
   289
           int x255,
06bc494ca11e Initial load
duke
parents:
diff changeset
   290
           int x256
06bc494ca11e Initial load
duke
parents:
diff changeset
   291
    ) {}
06bc494ca11e Initial load
duke
parents:
diff changeset
   292
06bc494ca11e Initial load
duke
parents:
diff changeset
   293
    static
06bc494ca11e Initial load
duke
parents:
diff changeset
   294
    void g(
06bc494ca11e Initial load
duke
parents:
diff changeset
   295
           int x1,
06bc494ca11e Initial load
duke
parents:
diff changeset
   296
           int x2,
06bc494ca11e Initial load
duke
parents:
diff changeset
   297
           int x3,
06bc494ca11e Initial load
duke
parents:
diff changeset
   298
           int x4,
06bc494ca11e Initial load
duke
parents:
diff changeset
   299
           int x5,
06bc494ca11e Initial load
duke
parents:
diff changeset
   300
           int x6,
06bc494ca11e Initial load
duke
parents:
diff changeset
   301
           int x7,
06bc494ca11e Initial load
duke
parents:
diff changeset
   302
           int x8,
06bc494ca11e Initial load
duke
parents:
diff changeset
   303
           int x9,
06bc494ca11e Initial load
duke
parents:
diff changeset
   304
           int x10,
06bc494ca11e Initial load
duke
parents:
diff changeset
   305
           int x11,
06bc494ca11e Initial load
duke
parents:
diff changeset
   306
           int x12,
06bc494ca11e Initial load
duke
parents:
diff changeset
   307
           int x13,
06bc494ca11e Initial load
duke
parents:
diff changeset
   308
           int x14,
06bc494ca11e Initial load
duke
parents:
diff changeset
   309
           int x15,
06bc494ca11e Initial load
duke
parents:
diff changeset
   310
           int x16,
06bc494ca11e Initial load
duke
parents:
diff changeset
   311
           int x17,
06bc494ca11e Initial load
duke
parents:
diff changeset
   312
           int x18,
06bc494ca11e Initial load
duke
parents:
diff changeset
   313
           int x19,
06bc494ca11e Initial load
duke
parents:
diff changeset
   314
           int x20,
06bc494ca11e Initial load
duke
parents:
diff changeset
   315
           int x21,
06bc494ca11e Initial load
duke
parents:
diff changeset
   316
           int x22,
06bc494ca11e Initial load
duke
parents:
diff changeset
   317
           int x23,
06bc494ca11e Initial load
duke
parents:
diff changeset
   318
           int x24,
06bc494ca11e Initial load
duke
parents:
diff changeset
   319
           int x25,
06bc494ca11e Initial load
duke
parents:
diff changeset
   320
           int x26,
06bc494ca11e Initial load
duke
parents:
diff changeset
   321
           int x27,
06bc494ca11e Initial load
duke
parents:
diff changeset
   322
           int x28,
06bc494ca11e Initial load
duke
parents:
diff changeset
   323
           int x29,
06bc494ca11e Initial load
duke
parents:
diff changeset
   324
           int x30,
06bc494ca11e Initial load
duke
parents:
diff changeset
   325
           int x31,
06bc494ca11e Initial load
duke
parents:
diff changeset
   326
           int x32,
06bc494ca11e Initial load
duke
parents:
diff changeset
   327
           int x33,
06bc494ca11e Initial load
duke
parents:
diff changeset
   328
           int x34,
06bc494ca11e Initial load
duke
parents:
diff changeset
   329
           int x35,
06bc494ca11e Initial load
duke
parents:
diff changeset
   330
           int x36,
06bc494ca11e Initial load
duke
parents:
diff changeset
   331
           int x37,
06bc494ca11e Initial load
duke
parents:
diff changeset
   332
           int x38,
06bc494ca11e Initial load
duke
parents:
diff changeset
   333
           int x39,
06bc494ca11e Initial load
duke
parents:
diff changeset
   334
           int x40,
06bc494ca11e Initial load
duke
parents:
diff changeset
   335
           int x41,
06bc494ca11e Initial load
duke
parents:
diff changeset
   336
           int x42,
06bc494ca11e Initial load
duke
parents:
diff changeset
   337
           int x43,
06bc494ca11e Initial load
duke
parents:
diff changeset
   338
           int x44,
06bc494ca11e Initial load
duke
parents:
diff changeset
   339
           int x45,
06bc494ca11e Initial load
duke
parents:
diff changeset
   340
           int x46,
06bc494ca11e Initial load
duke
parents:
diff changeset
   341
           int x47,
06bc494ca11e Initial load
duke
parents:
diff changeset
   342
           int x48,
06bc494ca11e Initial load
duke
parents:
diff changeset
   343
           int x49,
06bc494ca11e Initial load
duke
parents:
diff changeset
   344
           int x50,
06bc494ca11e Initial load
duke
parents:
diff changeset
   345
           int x51,
06bc494ca11e Initial load
duke
parents:
diff changeset
   346
           int x52,
06bc494ca11e Initial load
duke
parents:
diff changeset
   347
           int x53,
06bc494ca11e Initial load
duke
parents:
diff changeset
   348
           int x54,
06bc494ca11e Initial load
duke
parents:
diff changeset
   349
           int x55,
06bc494ca11e Initial load
duke
parents:
diff changeset
   350
           int x56,
06bc494ca11e Initial load
duke
parents:
diff changeset
   351
           int x57,
06bc494ca11e Initial load
duke
parents:
diff changeset
   352
           int x58,
06bc494ca11e Initial load
duke
parents:
diff changeset
   353
           int x59,
06bc494ca11e Initial load
duke
parents:
diff changeset
   354
           int x60,
06bc494ca11e Initial load
duke
parents:
diff changeset
   355
           int x61,
06bc494ca11e Initial load
duke
parents:
diff changeset
   356
           int x62,
06bc494ca11e Initial load
duke
parents:
diff changeset
   357
           int x63,
06bc494ca11e Initial load
duke
parents:
diff changeset
   358
           int x64,
06bc494ca11e Initial load
duke
parents:
diff changeset
   359
           int x65,
06bc494ca11e Initial load
duke
parents:
diff changeset
   360
           int x66,
06bc494ca11e Initial load
duke
parents:
diff changeset
   361
           int x67,
06bc494ca11e Initial load
duke
parents:
diff changeset
   362
           int x68,
06bc494ca11e Initial load
duke
parents:
diff changeset
   363
           int x69,
06bc494ca11e Initial load
duke
parents:
diff changeset
   364
           int x70,
06bc494ca11e Initial load
duke
parents:
diff changeset
   365
           int x71,
06bc494ca11e Initial load
duke
parents:
diff changeset
   366
           int x72,
06bc494ca11e Initial load
duke
parents:
diff changeset
   367
           int x73,
06bc494ca11e Initial load
duke
parents:
diff changeset
   368
           int x74,
06bc494ca11e Initial load
duke
parents:
diff changeset
   369
           int x75,
06bc494ca11e Initial load
duke
parents:
diff changeset
   370
           int x76,
06bc494ca11e Initial load
duke
parents:
diff changeset
   371
           int x77,
06bc494ca11e Initial load
duke
parents:
diff changeset
   372
           int x78,
06bc494ca11e Initial load
duke
parents:
diff changeset
   373
           int x79,
06bc494ca11e Initial load
duke
parents:
diff changeset
   374
           int x80,
06bc494ca11e Initial load
duke
parents:
diff changeset
   375
           int x81,
06bc494ca11e Initial load
duke
parents:
diff changeset
   376
           int x82,
06bc494ca11e Initial load
duke
parents:
diff changeset
   377
           int x83,
06bc494ca11e Initial load
duke
parents:
diff changeset
   378
           int x84,
06bc494ca11e Initial load
duke
parents:
diff changeset
   379
           int x85,
06bc494ca11e Initial load
duke
parents:
diff changeset
   380
           int x86,
06bc494ca11e Initial load
duke
parents:
diff changeset
   381
           int x87,
06bc494ca11e Initial load
duke
parents:
diff changeset
   382
           int x88,
06bc494ca11e Initial load
duke
parents:
diff changeset
   383
           int x89,
06bc494ca11e Initial load
duke
parents:
diff changeset
   384
           int x90,
06bc494ca11e Initial load
duke
parents:
diff changeset
   385
           int x91,
06bc494ca11e Initial load
duke
parents:
diff changeset
   386
           int x92,
06bc494ca11e Initial load
duke
parents:
diff changeset
   387
           int x93,
06bc494ca11e Initial load
duke
parents:
diff changeset
   388
           int x94,
06bc494ca11e Initial load
duke
parents:
diff changeset
   389
           int x95,
06bc494ca11e Initial load
duke
parents:
diff changeset
   390
           int x96,
06bc494ca11e Initial load
duke
parents:
diff changeset
   391
           int x97,
06bc494ca11e Initial load
duke
parents:
diff changeset
   392
           int x98,
06bc494ca11e Initial load
duke
parents:
diff changeset
   393
           int x99,
06bc494ca11e Initial load
duke
parents:
diff changeset
   394
           int x100,
06bc494ca11e Initial load
duke
parents:
diff changeset
   395
           int x101,
06bc494ca11e Initial load
duke
parents:
diff changeset
   396
           int x102,
06bc494ca11e Initial load
duke
parents:
diff changeset
   397
           int x103,
06bc494ca11e Initial load
duke
parents:
diff changeset
   398
           int x104,
06bc494ca11e Initial load
duke
parents:
diff changeset
   399
           int x105,
06bc494ca11e Initial load
duke
parents:
diff changeset
   400
           int x106,
06bc494ca11e Initial load
duke
parents:
diff changeset
   401
           int x107,
06bc494ca11e Initial load
duke
parents:
diff changeset
   402
           int x108,
06bc494ca11e Initial load
duke
parents:
diff changeset
   403
           int x109,
06bc494ca11e Initial load
duke
parents:
diff changeset
   404
           int x110,
06bc494ca11e Initial load
duke
parents:
diff changeset
   405
           int x111,
06bc494ca11e Initial load
duke
parents:
diff changeset
   406
           int x112,
06bc494ca11e Initial load
duke
parents:
diff changeset
   407
           int x113,
06bc494ca11e Initial load
duke
parents:
diff changeset
   408
           int x114,
06bc494ca11e Initial load
duke
parents:
diff changeset
   409
           int x115,
06bc494ca11e Initial load
duke
parents:
diff changeset
   410
           int x116,
06bc494ca11e Initial load
duke
parents:
diff changeset
   411
           int x117,
06bc494ca11e Initial load
duke
parents:
diff changeset
   412
           int x118,
06bc494ca11e Initial load
duke
parents:
diff changeset
   413
           int x119,
06bc494ca11e Initial load
duke
parents:
diff changeset
   414
           int x120,
06bc494ca11e Initial load
duke
parents:
diff changeset
   415
           int x121,
06bc494ca11e Initial load
duke
parents:
diff changeset
   416
           int x122,
06bc494ca11e Initial load
duke
parents:
diff changeset
   417
           int x123,
06bc494ca11e Initial load
duke
parents:
diff changeset
   418
           int x124,
06bc494ca11e Initial load
duke
parents:
diff changeset
   419
           int x125,
06bc494ca11e Initial load
duke
parents:
diff changeset
   420
           int x126,
06bc494ca11e Initial load
duke
parents:
diff changeset
   421
           int x127,
06bc494ca11e Initial load
duke
parents:
diff changeset
   422
           int x128,
06bc494ca11e Initial load
duke
parents:
diff changeset
   423
           int x129,
06bc494ca11e Initial load
duke
parents:
diff changeset
   424
           int x130,
06bc494ca11e Initial load
duke
parents:
diff changeset
   425
           int x131,
06bc494ca11e Initial load
duke
parents:
diff changeset
   426
           int x132,
06bc494ca11e Initial load
duke
parents:
diff changeset
   427
           int x133,
06bc494ca11e Initial load
duke
parents:
diff changeset
   428
           int x134,
06bc494ca11e Initial load
duke
parents:
diff changeset
   429
           int x135,
06bc494ca11e Initial load
duke
parents:
diff changeset
   430
           int x136,
06bc494ca11e Initial load
duke
parents:
diff changeset
   431
           int x137,
06bc494ca11e Initial load
duke
parents:
diff changeset
   432
           int x138,
06bc494ca11e Initial load
duke
parents:
diff changeset
   433
           int x139,
06bc494ca11e Initial load
duke
parents:
diff changeset
   434
           int x140,
06bc494ca11e Initial load
duke
parents:
diff changeset
   435
           int x141,
06bc494ca11e Initial load
duke
parents:
diff changeset
   436
           int x142,
06bc494ca11e Initial load
duke
parents:
diff changeset
   437
           int x143,
06bc494ca11e Initial load
duke
parents:
diff changeset
   438
           int x144,
06bc494ca11e Initial load
duke
parents:
diff changeset
   439
           int x145,
06bc494ca11e Initial load
duke
parents:
diff changeset
   440
           int x146,
06bc494ca11e Initial load
duke
parents:
diff changeset
   441
           int x147,
06bc494ca11e Initial load
duke
parents:
diff changeset
   442
           int x148,
06bc494ca11e Initial load
duke
parents:
diff changeset
   443
           int x149,
06bc494ca11e Initial load
duke
parents:
diff changeset
   444
           int x150,
06bc494ca11e Initial load
duke
parents:
diff changeset
   445
           int x151,
06bc494ca11e Initial load
duke
parents:
diff changeset
   446
           int x152,
06bc494ca11e Initial load
duke
parents:
diff changeset
   447
           int x153,
06bc494ca11e Initial load
duke
parents:
diff changeset
   448
           int x154,
06bc494ca11e Initial load
duke
parents:
diff changeset
   449
           int x155,
06bc494ca11e Initial load
duke
parents:
diff changeset
   450
           int x156,
06bc494ca11e Initial load
duke
parents:
diff changeset
   451
           int x157,
06bc494ca11e Initial load
duke
parents:
diff changeset
   452
           int x158,
06bc494ca11e Initial load
duke
parents:
diff changeset
   453
           int x159,
06bc494ca11e Initial load
duke
parents:
diff changeset
   454
           int x160,
06bc494ca11e Initial load
duke
parents:
diff changeset
   455
           int x161,
06bc494ca11e Initial load
duke
parents:
diff changeset
   456
           int x162,
06bc494ca11e Initial load
duke
parents:
diff changeset
   457
           int x163,
06bc494ca11e Initial load
duke
parents:
diff changeset
   458
           int x164,
06bc494ca11e Initial load
duke
parents:
diff changeset
   459
           int x165,
06bc494ca11e Initial load
duke
parents:
diff changeset
   460
           int x166,
06bc494ca11e Initial load
duke
parents:
diff changeset
   461
           int x167,
06bc494ca11e Initial load
duke
parents:
diff changeset
   462
           int x168,
06bc494ca11e Initial load
duke
parents:
diff changeset
   463
           int x169,
06bc494ca11e Initial load
duke
parents:
diff changeset
   464
           int x170,
06bc494ca11e Initial load
duke
parents:
diff changeset
   465
           int x171,
06bc494ca11e Initial load
duke
parents:
diff changeset
   466
           int x172,
06bc494ca11e Initial load
duke
parents:
diff changeset
   467
           int x173,
06bc494ca11e Initial load
duke
parents:
diff changeset
   468
           int x174,
06bc494ca11e Initial load
duke
parents:
diff changeset
   469
           int x175,
06bc494ca11e Initial load
duke
parents:
diff changeset
   470
           int x176,
06bc494ca11e Initial load
duke
parents:
diff changeset
   471
           int x177,
06bc494ca11e Initial load
duke
parents:
diff changeset
   472
           int x178,
06bc494ca11e Initial load
duke
parents:
diff changeset
   473
           int x179,
06bc494ca11e Initial load
duke
parents:
diff changeset
   474
           int x180,
06bc494ca11e Initial load
duke
parents:
diff changeset
   475
           int x181,
06bc494ca11e Initial load
duke
parents:
diff changeset
   476
           int x182,
06bc494ca11e Initial load
duke
parents:
diff changeset
   477
           int x183,
06bc494ca11e Initial load
duke
parents:
diff changeset
   478
           int x184,
06bc494ca11e Initial load
duke
parents:
diff changeset
   479
           int x185,
06bc494ca11e Initial load
duke
parents:
diff changeset
   480
           int x186,
06bc494ca11e Initial load
duke
parents:
diff changeset
   481
           int x187,
06bc494ca11e Initial load
duke
parents:
diff changeset
   482
           int x188,
06bc494ca11e Initial load
duke
parents:
diff changeset
   483
           int x189,
06bc494ca11e Initial load
duke
parents:
diff changeset
   484
           int x190,
06bc494ca11e Initial load
duke
parents:
diff changeset
   485
           int x191,
06bc494ca11e Initial load
duke
parents:
diff changeset
   486
           int x192,
06bc494ca11e Initial load
duke
parents:
diff changeset
   487
           int x193,
06bc494ca11e Initial load
duke
parents:
diff changeset
   488
           int x194,
06bc494ca11e Initial load
duke
parents:
diff changeset
   489
           int x195,
06bc494ca11e Initial load
duke
parents:
diff changeset
   490
           int x196,
06bc494ca11e Initial load
duke
parents:
diff changeset
   491
           int x197,
06bc494ca11e Initial load
duke
parents:
diff changeset
   492
           int x198,
06bc494ca11e Initial load
duke
parents:
diff changeset
   493
           int x199,
06bc494ca11e Initial load
duke
parents:
diff changeset
   494
           int x200,
06bc494ca11e Initial load
duke
parents:
diff changeset
   495
           int x201,
06bc494ca11e Initial load
duke
parents:
diff changeset
   496
           int x202,
06bc494ca11e Initial load
duke
parents:
diff changeset
   497
           int x203,
06bc494ca11e Initial load
duke
parents:
diff changeset
   498
           int x204,
06bc494ca11e Initial load
duke
parents:
diff changeset
   499
           int x205,
06bc494ca11e Initial load
duke
parents:
diff changeset
   500
           int x206,
06bc494ca11e Initial load
duke
parents:
diff changeset
   501
           int x207,
06bc494ca11e Initial load
duke
parents:
diff changeset
   502
           int x208,
06bc494ca11e Initial load
duke
parents:
diff changeset
   503
           int x209,
06bc494ca11e Initial load
duke
parents:
diff changeset
   504
           int x210,
06bc494ca11e Initial load
duke
parents:
diff changeset
   505
           int x211,
06bc494ca11e Initial load
duke
parents:
diff changeset
   506
           int x212,
06bc494ca11e Initial load
duke
parents:
diff changeset
   507
           int x213,
06bc494ca11e Initial load
duke
parents:
diff changeset
   508
           int x214,
06bc494ca11e Initial load
duke
parents:
diff changeset
   509
           int x215,
06bc494ca11e Initial load
duke
parents:
diff changeset
   510
           int x216,
06bc494ca11e Initial load
duke
parents:
diff changeset
   511
           int x217,
06bc494ca11e Initial load
duke
parents:
diff changeset
   512
           int x218,
06bc494ca11e Initial load
duke
parents:
diff changeset
   513
           int x219,
06bc494ca11e Initial load
duke
parents:
diff changeset
   514
           int x220,
06bc494ca11e Initial load
duke
parents:
diff changeset
   515
           int x221,
06bc494ca11e Initial load
duke
parents:
diff changeset
   516
           int x222,
06bc494ca11e Initial load
duke
parents:
diff changeset
   517
           int x223,
06bc494ca11e Initial load
duke
parents:
diff changeset
   518
           int x224,
06bc494ca11e Initial load
duke
parents:
diff changeset
   519
           int x225,
06bc494ca11e Initial load
duke
parents:
diff changeset
   520
           int x226,
06bc494ca11e Initial load
duke
parents:
diff changeset
   521
           int x227,
06bc494ca11e Initial load
duke
parents:
diff changeset
   522
           int x228,
06bc494ca11e Initial load
duke
parents:
diff changeset
   523
           int x229,
06bc494ca11e Initial load
duke
parents:
diff changeset
   524
           int x230,
06bc494ca11e Initial load
duke
parents:
diff changeset
   525
           int x231,
06bc494ca11e Initial load
duke
parents:
diff changeset
   526
           int x232,
06bc494ca11e Initial load
duke
parents:
diff changeset
   527
           int x233,
06bc494ca11e Initial load
duke
parents:
diff changeset
   528
           int x234,
06bc494ca11e Initial load
duke
parents:
diff changeset
   529
           int x235,
06bc494ca11e Initial load
duke
parents:
diff changeset
   530
           int x236,
06bc494ca11e Initial load
duke
parents:
diff changeset
   531
           int x237,
06bc494ca11e Initial load
duke
parents:
diff changeset
   532
           int x238,
06bc494ca11e Initial load
duke
parents:
diff changeset
   533
           int x239,
06bc494ca11e Initial load
duke
parents:
diff changeset
   534
           int x240,
06bc494ca11e Initial load
duke
parents:
diff changeset
   535
           int x241,
06bc494ca11e Initial load
duke
parents:
diff changeset
   536
           int x242,
06bc494ca11e Initial load
duke
parents:
diff changeset
   537
           int x243,
06bc494ca11e Initial load
duke
parents:
diff changeset
   538
           int x244,
06bc494ca11e Initial load
duke
parents:
diff changeset
   539
           int x245,
06bc494ca11e Initial load
duke
parents:
diff changeset
   540
           int x246,
06bc494ca11e Initial load
duke
parents:
diff changeset
   541
           int x247,
06bc494ca11e Initial load
duke
parents:
diff changeset
   542
           int x248,
06bc494ca11e Initial load
duke
parents:
diff changeset
   543
           int x249,
06bc494ca11e Initial load
duke
parents:
diff changeset
   544
           int x250,
06bc494ca11e Initial load
duke
parents:
diff changeset
   545
           int x251,
06bc494ca11e Initial load
duke
parents:
diff changeset
   546
           int x252,
06bc494ca11e Initial load
duke
parents:
diff changeset
   547
           int x253,
06bc494ca11e Initial load
duke
parents:
diff changeset
   548
           int x254,
06bc494ca11e Initial load
duke
parents:
diff changeset
   549
           int x255,
06bc494ca11e Initial load
duke
parents:
diff changeset
   550
           int x256
06bc494ca11e Initial load
duke
parents:
diff changeset
   551
    ) {}
06bc494ca11e Initial load
duke
parents:
diff changeset
   552
}