import java.util.concurrent.Callable;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	Callable<?> x = this::clone;
	Throwing z = super::finalize;
	Callable<?> y = super::clone;

	interface Throwing {
		void run() throws Error;
	}
}