blob: 89964c1b5bdf27831b20f077c1060b01759e35df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# cmdline: -X compile-only
# test compile-only functionality
print("This should not be printed")
x = 1 + 2
def hello():
return "world"
class TestClass:
def __init__(self):
self.value = 42
|