Blame testing/047_return.cpp

Packit Service 50c9f2
// objective: test the \result, \return, and \returns commands
Packit Service 50c9f2
// check: 047__return_8cpp.xml
Packit Service 50c9f2
Packit Service 50c9f2
/** \file */
Packit Service 50c9f2
Packit Service 50c9f2
/** Test function 1.
Packit Service 50c9f2
 *  \result A integer.
Packit Service 50c9f2
 */
Packit Service 50c9f2
int func1();
Packit Service 50c9f2
Packit Service 50c9f2
/** Test function 2.
Packit Service 50c9f2
 *  \return A integer.
Packit Service 50c9f2
 */
Packit Service 50c9f2
int func2();
Packit Service 50c9f2
Packit Service 50c9f2
/** Test function 3.
Packit Service 50c9f2
 *  \returns A integer.
Packit Service 50c9f2
 */
Packit Service 50c9f2
int func3();
Packit Service 50c9f2