summaryrefslogtreecommitdiffstats
path: root/testsuite/semko/twentyseven.stp
blob: 6c5bd4f9bdd9b706831bac0b45e401a7e81ef43e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#! stap -p2

# need one of these for each prohibited statistic operation

global x

function foo(bar)
{
	bar <<< x
}

probe end
{
	x <<< 10
	foo(x)
}