Home
last modified time | relevance | path

Searched refs:func_mutable (Results 1 – 2 of 2) sorted by relevance

/dports/lang/rust/rustc-1.58.1-src/src/tools/clippy/tests/ui/
H A Ddebug_assert_with_mut_call.rs41 fn func_mutable() { in func_mutable() function
127 func_mutable(); in main()
/dports/devel/folly/folly-2021.12.27.00/folly/test/
H A DFunctionTest.cpp498 Function<int()> func_mutable = [number]() mutable { return ++number; }; in TEST() local
499 EXPECT_EQ(3001, func_mutable()); in TEST()
500 EXPECT_EQ(3002, func_mutable()); in TEST()
514 folly::constCastFunction(std::move(func_mutable)); in TEST()
517 EXPECT_THROW(func_mutable(), std::bad_function_call); in TEST()