public class ExplicitLiteralSuffix {
	public static void main(String [] args) {
		float f = .53F;			// Compiler error w/o 'F' suffix
	}
}