| 300 | TEST_F(ProcessorTest, any_accept_any_type) { |
| 301 | struct P : public GraphProcessor { |
| 302 | virtual int process() noexcept override { |
| 303 | x.emit().ref(*a->get<::std::string>()); |
| 304 | return 0; |
| 305 | } |
| 306 | ANYFLOW_INTERFACE(ANYFLOW_DEPEND_DATA(::babylon::Any, a) |
| 307 | ANYFLOW_EMIT_DATA(::std::string, x)) |
| 308 | }; |