View | Details | Raw Unified | Return to bug 239783
Collapse All | Expand All

(-)src/org/eclipse/jdt/core/tests/compiler/regression/JavadocBugsTest.java (+19 lines)
Lines 7414-7417 Link Here
7414
			JavacTestOptions.Excuse.EclipseWarningConfiguredAsError
7414
			JavacTestOptions.Excuse.EclipseWarningConfiguredAsError
7415
		);
7415
		);
7416
	}
7416
	}
7417
	
7418
	public void testBug239783() {
7419
		String[] units = new String[] {
7420
				"pkg/X.java",
7421
				"package pkg;\n" +
7422
				"\n" +
7423
				"public class X extends Object {\n" +
7424
				"	/**\n" +
7425
				"	 * @see <a href=\"http://www.eclipse.org\">http://www.eclipse.org</a>\n" +
7426
				"	 */\n" +
7427
				"	public String toString() { \n" +
7428
				"		return \"foo\";\n" +
7429
				"	}\n" +
7430
				"}\n"
7431
			};
7432
			this.reportInvalidJavadoc = CompilerOptions.ERROR;
7433
			this.reportMissingJavadocDescription = CompilerOptions.ALL_STANDARD_TAGS;
7434
			runConformTest(units);
7435
	}
7417
}
7436
}

Return to bug 239783