``` def foo(&block) @block = block end memoize :foo foo { :bar } @block # => nil ``` There should be either exception or no memoization in this case