11 lines
No EOL
148 B
Text
11 lines
No EOL
148 B
Text
fun generic_add(x, y) {
|
|
x + y
|
|
}
|
|
|
|
fun test() {
|
|
generic_add(10, 10)
|
|
}
|
|
|
|
// @ignore undesigned garbage, like all generics
|
|
// @no-errors
|
|
// @eval: 20 |