diff options
Diffstat (limited to 'testsuite/transok/three.stp')
-rwxr-xr-x | testsuite/transok/three.stp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/testsuite/transok/three.stp b/testsuite/transok/three.stp index 475b832f..6e99b640 100755 --- a/testsuite/transok/three.stp +++ b/testsuite/transok/three.stp @@ -1,11 +1,13 @@ #! stap -p3 +global poo + function f1 (a, b) { c = 1; d = "hello"; # poo[c] = bab[d] = "hi" bab = "hi"; - # bab = poo[c]; + bab = poo[c]; return 0 } |