mirror of
https://github.com/ldmud/ldmud
synced 2026-08-12 14:26:05 -04:00
The last release reimplemented pragma strict_types with warning only, this release will make that errors again.
7 lines
153 B
C
7 lines
153 B
C
#pragma strict_types
|
|
|
|
int check()
|
|
{
|
|
// This should give a compile error
|
|
return python_typecheck(this_object()->test(), this_object()->test());
|
|
}
|