Temporary tag for this failure. Updated CI spec coming.
[rbx.git] / kernel / core / channel.rb
blob198c3f6282dd74e046ca8cf23fff85c3a91545dd
1 # depends on: class.rb
3 class Channel
4   alias_method :<<, :send
6   def inspect
7     "#<Channel:0x%x @waiting=%p @value=%p>" % [object_id, waiting, value]
8   end
9 end