useroxygen::*;// just a smoke test that the proc macro can indeed be used like this.
// the real tests are in the macro expansion tests.
#[roxygen]/// hello
#[parameters_section]/// this
/// is doc
fnfoo(/// some comments
/// more comments
first:i32,
second:f32,
)->f32{
first asf32- second
}#[test]fntest_foo(){assert_eq!(foo(1,3.),-2.);}