Finished in N/A with no explanation

I keep getting "Finished in N/A" Compile error.
Even for such a simple code:
public class Solution {
public ListNode AddTwoNumbers(ListNode l1, ListNode l2) {
int carry = 0;
ListNode result = new ListNode(0);

    return result;
}

}

Comments (3)