| 198 | TEST(move_only_function, support_normal_function) { |
| 199 | struct S { |
| 200 | static ::std::string func(::std::string s) { |
| 201 | return "10086" + s; |
| 202 | } |
| 203 | }; |
| 204 | auto ret = MoveOnlyFunction<::std::string(::std::string)>(S::func)("10010"); |
| 205 | ASSERT_EQ("1008610010", ret); |
nothing calls this directly
no outgoing calls
no test coverage detected