Lines Matching full:quiz
2344 Quiz time! What do you think will happen if a `Return(ByMove(...))` action is performed more than once (e.g. you write `?.WillRepeatedly(Return(ByMove(...)));`)? Come think of it, after the first time the action runs, the source value will be consumed (since it?s a move-only value), so the next time around, there?s no value to move from -- you?ll get a run-time error that `Return(ByMove(...))` can only be run once.