DEBSOURCES
Skip Quicknav
sources / systemtap / 5.3-2 / testsuite / semko / array_slicing02.stp
12345678
#! stap -p2 global val probe begin { val [1, 2, 3] = 4 # incorrect index type foreach ([a, b, c] in val["hello", *, *]){exit();} }