All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jtransc.bug.JTranscRegression1Test Maven / Gradle / Ivy

package jtransc.bug;

public class JTranscRegression1Test {
	static public void main(String[] args) {
		System.out.println(new MyConcrete().getValue());
	}

	static class MyConcrete extends MyAbstract {
		@Override
		public int getValue() {
			return 1;
		}
	}

	static abstract class MyAbstract implements MyInterface {
	}

	interface MyInterface {
		int getValue();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy