mirror of
https://gcc.gnu.org/git/gcc.git
synced 2026-02-22 20:01:22 -05:00
15 lines
181 B
Java
15 lines
181 B
Java
// gcj had a problem with "SomeClass.field++" when gimplifying.
|
|
|
|
class helper
|
|
{
|
|
static int value;
|
|
}
|
|
|
|
public class pr17329
|
|
{
|
|
static void doit ()
|
|
{
|
|
helper.value += 2;
|
|
}
|
|
}
|