blob: 901f6602fb3e15f4bd41687fb2c6fe16d7efcfc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// objective: test \link command
// check: 036__link_8c.xml
/** \file
* See \link func() the function\endlink for more info.
* See the \link Test test\endlink class.
*/
/** A function
*/
void func(int p);
/** A test */
class Test
{
};
|