blob: 6c0eecb9878e06eeab4c9726b51d752adc39c119 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
# $FreeBSD: src/tools/regression/bin/sh/execution/func2.0,v 1.1.2.2.2.1 2009/10/25 01:10:29 kensmith Exp $
f() { }
f
hash -v f >/dev/null
f() { { }; }
f
hash -v f >/dev/null
f() { { } }
f
hash -v f >/dev/null
|