aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/guile/overload_subtype_runme.scm
blob: 14737f1440e7513e2d480addd1c919e9b9604c9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
;; The SWIG modules have "passive" Linkage, i.e., they don't generate
;; Guile modules (namespaces) but simply put all the bindings into the
;; current module.  That's enough for such a simple test.
(dynamic-call "scm_init_overload_subtype_module" (dynamic-link "./liboverload_subtype.so"))

(if (not (= (spam (new-Foo)) 1))
    (error "foo"))

(if (not (= (spam (new-Bar)) 2))
    (error "bar"))

(exit 0)