G19990210_1.java 1019 Bytes
Newer Older
Tom Tromey committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*-------------------------------------------------------------------------*/
/* File name : G19990210_1                                                 */
/*           :                                                             */
/* Cause     :                                                             */
/*           :                                                             */
/* Message   : G19990210_1.java: In class `G19990210_1':                   */
/*             G19990210_1.java: In method `foo()':                        */
/*             G19990210_1.java:8: Unreachable statement.                  */
/*                             return 0;                                   */
/*                             ^                                           */
/*             1 error                                                     */
/*-------------------------------------------------------------------------*/
public class G19990210_1 {
  int foo() {
	try { ; } finally { ; }
	return 0;
  }
}