OILS / mycpp / examples / invalid_unreachable_code.py View on Github | oils.pub

15 lines, 6 significant
1#!/usr/bin/env python2
2"""
3Unreachable code
4"""
5
6def a():
7 # type: () -> None
8 return
9 c = 1
10
11
12def b():
13 # type: () -> None
14 raise AssertionError()
15 d = 1