Java程序  |  11行  |  107 B

package foo;

interface A {

	enum FindMeIfYouCan {
		CONSTANT
	}
	
	void overrideMe(FindMeIfYouCan v);
}