Skip to main content
summaryrefslogtreecommitdiffstats
blob: ed049103fe4af65036fad2f62a66319ab29940b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package javadoc.testBug73348; 
public class TestValid {
	/**
	 *	@return 
	 * int
	 */
	public int foo1() {return 0; }
	/**
	 *	@return 
	 * int
	 * @see Object
	 */
	public int foo2() {return 0; }
}

Back to the top