| 26 | |
| 27 | C_ATTR(test0, :Local) |
| 28 | void test0(Context *c) |
| 29 | { |
| 30 | c->response()->setContentType("text/plain"_ba); |
| 31 | c->setStash(u"foo"_s, QByteArrayLiteral("bar")); |
| 32 | c->setStash(u"bar"_s, QByteArrayLiteral("baz")); |
| 33 | c->forward(c->view()); |
| 34 | } |
| 35 | |
| 36 | C_ATTR(test1, :Local) |
| 37 | void test1(Context *c) |
nothing calls this directly
no test coverage detected