IronRuby.Tests.Tests.Scenario_RubyArgSplatting3 C# (CSharp) Method

Scenario_RubyArgSplatting3() public method

public Scenario_RubyArgSplatting3 ( ) : void
return void
        public void Scenario_RubyArgSplatting3() {
            TestOutput(@"
def foo(a,b,c)
  p [a,b,c]
end

foo(1,2,*3)
", @"
[1, 2, 3]
");
        }
Tests