summaryrefslogtreecommitdiffstats
path: root/t/fun/compile-time.t
blob: cc72455e42f51385396d7d24c9f33de5a740395b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use lib 't/fun/lib';

use Fun;

is(foo(), "FOO");

fun foo { "FOO" }

done_testing;