mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-06 16:57:04 +08:00
17 lines
198 B
ChaiScript
17 lines
198 B
ChaiScript
|
|
class MyClass {
|
|
def MyClass()
|
|
{
|
|
this.set_explicit(true);
|
|
}
|
|
};
|
|
|
|
var o = MyClass();
|
|
|
|
assert_true(o.is_explicit());
|
|
|
|
assert_throws("Error: \"'x' is not a function.\"", fun[o](){o.x = 2})
|
|
|
|
|
|
|