2014-05-01 18:23:37 +00:00
|
|
|
assert(not binder_info():is_implicit())
|
|
|
|
assert(not binder_info():is_cast())
|
|
|
|
assert(not binder_info(false, false):is_implicit())
|
|
|
|
assert(not binder_info(false, false):is_cast())
|
|
|
|
assert(binder_info(true):is_implicit())
|
|
|
|
assert(not binder_info(true):is_cast())
|
|
|
|
assert(binder_info(true, true):is_implicit())
|
|
|
|
assert(binder_info(true, true):is_cast())
|
2014-05-14 21:54:27 +00:00
|
|
|
assert(binder_info():is_contextual())
|
|
|
|
assert(not binder_info(true, true, false):is_contextual())
|
|
|
|
assert(binder_info(false, false, true):is_contextual())
|
2014-05-01 18:23:37 +00:00
|
|
|
|