1use Test::More 'no_plan';
2
3package Problem;
4use Class::Std;
5
6# overload seems to interfere with overloading coercions
7sub as_string : STRINGIFY { return 'string'; }
8
9package main;
10
11our $obj;
12BEGIN { 
13    $obj = Problem->new();
14    ok("$obj");
15}
16
17ok("$obj");
18