ChaiScript/unittests/object_method_guards.chai
2011-09-24 12:05:08 -06:00

8 lines
160 B
ChaiScript

def bob::bob() { }
def bob::fred(e) : e < 10 { assert_equal(true, e<10) }
def bob::fred(e) { assert_equal(true, e >= 10) }
auto b = bob()
b.fred(3)
b.fred(12)