~ubuntu-branches/ubuntu/wily/julia/wily

« back to all changes in this revision

Viewing changes to test/keywordargs.jl

  • Committer: Package Import Robot
  • Author(s): Sébastien Villemot
  • Date: 2013-11-17 19:32:52 UTC
  • mfrom: (1.1.12)
  • Revision ID: package-import@ubuntu.com-20131117193252-tkrpclguqqebqa35
Tags: 0.2.0+dfsg-3
testsuite-i386.patch: loosen the numerical precision for yet another test.

Show diffs side-by-side

added added

removed removed

Lines of Context:
141
141
    end
142
142
end
143
143
@test (@TEST4538_3) == 3
 
144
 
 
145
# issue #4801
 
146
type T4801{X}
 
147
    T4801(;k=0) = new()
 
148
end
 
149
@test isa(T4801{Any}(k=0), T4801{Any})