blob: fa31f18a726f0769dbafa51a69b02433104a61ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// gcj had a problem with "SomeClass.field++" when gimplifying.
class helper
{
static int value;
}
public class pr17329
{
static void doit ()
{
helper.value += 2;
}
}
|