Please file this as an issue; it's likely to get more of the right kind of 
attention that way. You'll also need to provide more information, see 
https://gist.github.com/staticfloat/6188418.

--Tim

On Monday, March 10, 2014 03:49:14 AM Alex wrote:
> Hi!
> 
> I am not sure that the description in the subject is accurate, but this
> works
> julia> foo(ts...) = hcat(ts...)
> foo (generic function with 1 method)
> 
> julia> foo([0.:0.0001:300]...)
> 1x3000001 Array{Float64,2}:
>  0.0  0.0001  0.0002  0.0003  0.0004  0.0005  0.0006  0.0007  0.0008  …
> 299.999  299.999  299.999  300.0  300.0  300.0  300.0  300.0  300.0
> 
> 
> while this crashes
> 
> julia> boo(t0, ts...) = hcat(t0, ts...)
> boo (generic function with 1 method)
> 
> julia> boo([0.:0.0001:300]...)
> Segmentation fault: 11
> 
> 
> The latter works if I change 300 to 100, but the numbers will likely depend
> on the system configuration.
> 
> Anyone else seeing this?
> 
> Best,
> 
> Alex.
> 
> PS: I use version 0.3.0-prerelease+1913 on OSX 10.8.5.

Reply via email to