

 Function foo

    line 4 / 10
    1 + max(x, 0)
    O(n^1)
      line 6 / 8
       max(x, 0) × max(x, 0)
      O(n^2)

Total Complexity: O(n^2)
