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