Mirror of the JODE repository
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
jode/jode/test/InlineTest.java

14 lines
329 B

// You may put this in different packages, to check package wide
// inlining (see jode.test.OptimizeTest)
package jode.test;
/**
* Check if inlines are allowed over package borders.
*/
public class InlineTest {
public static final int
difficultSideInline(jode.test.OptimizeTest ot, int a) {
return ot.g++ + a;
}
}