blob: 9c61f01aa8b6167b3e489f101410631b1f32bbdb [file] [log] [blame]
package javadoc.testBug69275;
public class TestA {
/**@see <a href="http://www.eclipse.org">text</a>*/
void foo1() {}
/**@see <a href="http://www.eclipse.org">text</a>
*/
void foo2() {}
/**@see <a href="http://www.eclipse.org">text</a> */
void foo3() {}
/**@see <a href="http://www.eclipse.org">text</a>**/
void foo4() {}
/**@see <a href="http://www.eclipse.org">text</a> *****/
void foo5() {}
}