summaryrefslogtreecommitdiffstats
path: root/XQTS/TestSources/module-pub-priv.xq
blob: 5f28845cf729e1ddba385000c1b78301d2005991 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
xquery version "1.1";

(:***********************************************************:)
(: Test: module-pub-priv.xq                                  :)
(: Written By: Carmelo Montanez                              :)
(: Date: 2009-10-28                                          :)
(: Purpose: Library module with public and private functions :)
(:***********************************************************:)

module namespace mod="http://www.w3.org/TestModules/module-pub-priv";

declare private function mod:f() { 23 };

declare public function mod:g($a as xs:integer) {
   mod:f() + $a
};