1 # Sample script for use by test_gdb
2
3 def foo(a, b, c):
4 bar(a=a, b=b, c=c)
5
6 def bar(a, b, c):
7 baz(a, b, c)
8
9 def baz(*args):
10 id(42)
11
12 foo(1, 2, 3)