- Check for more error conditions - Move to more definitive error assertions - Simpler error messages in some cases - Test more conditions more thoroughly, revisit old tests
11 lines
No EOL
159 B
Text
11 lines
No EOL
159 B
Text
fun generic_add(x, y) {
|
|
x + y
|
|
}
|
|
|
|
fun test() {
|
|
generic_add(10, 10)
|
|
}
|
|
|
|
// @ignore Feature is undesigned, this is tentative garbage
|
|
// @no-errors
|
|
// @eval: 20 |