mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-19 05:19:02 +08:00
19 lines
1006 B
Java
19 lines
1006 B
Java
|
/*-------------------------------------------------------------------------*/
|
||
|
/* File name : G19990210_2 */
|
||
|
/* : */
|
||
|
/* Cause : */
|
||
|
/* : */
|
||
|
/* Message : G19990210_2.java: In class `G19990210_2': */
|
||
|
/* : G19990210_2.java: In method `foo()': */
|
||
|
/* : G19990210_2.java:5: Missing return statement. */
|
||
|
/* : } */
|
||
|
/* : ^ */
|
||
|
/* : 1 error */
|
||
|
/*-------------------------------------------------------------------------*/
|
||
|
public class G19990210_2 {
|
||
|
public int foo () {
|
||
|
return 1;
|
||
|
;
|
||
|
}
|
||
|
}
|