blob: 1254a93d7850c3d6fe3f2ab063acb4154a50367d [file] [log] [blame]
(:*******************************************************:)
(: Test: K-sequenceExprTypeswitch-4 :)
(: Written by: Frans Englich :)
(: Date: 2006-10-05T18:29:37+02:00 :)
(: Purpose: A sequence of atomic items are not treated individually, but as a whole. :)
(:*******************************************************:)
(typeswitch((1, "a string"))
case xs:integer return -1
case xs:string return -2
case xs:anyAtomicType+ return 1
default return -3)
eq 1