(a, b, c)
| 184 | |
| 185 | @expect_types(a=int, b=int) |
| 186 | def foo(a, b, c): |
| 187 | return a, b, c |
| 188 | |
| 189 | self.assertEqual(foo(1, 2, 3), (1, 2, 3)) |
| 190 | self.assertEqual(foo(1, 2, c=3), (1, 2, 3)) |
nothing calls this directly
no outgoing calls
no test coverage detected