# Name: Call an empty function with a single argument
# Repeat: 20

sub empty {
   my $var = shift;
   # do nothng
}

### TEST

empty("foo");