import all tests from Fun
[p5sagit/Function-Parameters.git] / t / foreign / Fun / compile-time.t
CommitLineData
98478aff 1#!perl
2use strict;
3use warnings FATAL => 'all';
4use Test::More;
5
6use Function::Parameters;
7
8is(foo(), "FOO");
9
10fun foo { "FOO" }
11
12done_testing;