Invoke_2.java: New file.
1999-05-12 Andrew Haley <aph@cygnus.com> * libjava.lang/Invoke_2.java: New file. From-SVN: r26900
This commit is contained in:
committed by
Andrew Haley
parent
d960c105fc
commit
3b551e09f1
@@ -0,0 +1,20 @@
|
||||
public class Invoke_2
|
||||
{
|
||||
static int s;
|
||||
|
||||
public static void foo (int a, int b)
|
||||
{
|
||||
System.out.println(a + " " + b);
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
foo (bar(), s);
|
||||
}
|
||||
|
||||
public static int bar()
|
||||
{
|
||||
s = 33;
|
||||
return 99;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user