blob: c55a0a2546a5c8dc98a1591b07749cf5a6b81d5e [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() {}
}