blob: 75859862242a7b4aa8fa18b27ce7609cfe090eb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// objective: test the \result, \return, and \returns commands
// check: 047__return_8cpp.xml
/** \file */
/** Test function 1.
* \result A integer.
*/
int func1();
/** Test function 2.
* \return A integer.
*/
int func2();
/** Test function 3.
* \returns A integer.
*/
int func3();
|