class String { bool test(bool value) { return value + 1; } } void main() { print(String().test(2)); print(String().test(2.0)); }