get doc comments on fields as runtime constants
```rust
struct Test { /// doc comment /// with indentation field: (), /// another doc comment field2: (), }
fn itworks() { asserteq!("doc comment\n with indentation", Test::getdocs().field); asserteq!("another doc comment", Test::get_docs().field2); } ```