| 1 | module mod1 |
| 2 | |
| 3 | // Note: the function here, should be overridden by the one in the wrapper.c.v file with the same name |
| 4 | pub fn vadd(a int, b int) int { |
| 5 | return 123456 |
| 6 | } |
| 7 | |
| 8 | // this should NOT be overridden by the different wrapper.X.v files: |
| 9 | pub fn a_common_pure_v_fn() int { |
| 10 | return 987654 |
| 11 | } |
| 12 |