This is an automatically generated mail to inform you that tests are now 
available in S02-builtin_data_types/whatever.t

commit 84eeb91eda9ada8213f062282f85e04779764a5b
Author: Kyle Hasselbacher <kyl...@gmail.com>
Date:   Thu Dec 23 14:00:16 2010 -0600

    [whatever.t] Test for RT 79166

diff --git a/S02-builtin_data_types/whatever.t 
b/S02-builtin_data_types/whatever.t
index 4e1a45e..5ebdc31 100644
--- a/S02-builtin_data_types/whatever.t
+++ b/S02-builtin_data_types/whatever.t
@@ -1,7 +1,7 @@
 use v6;
 use Test;
 
-plan 71;
+plan 73;
 
 # L<S02/Built-In Data Types/"The * character as a standalone term captures the 
notion of">
 # L<S02/Native types/"If any native type is explicitly initialized to">
@@ -223,6 +223,15 @@ eval_lives_ok '{*.{}}()', '{*.{}}() lives';
     dies_ok { &infix:<R+>(*, 42) }, '&infix:<+>(*, 42) doesn\'t make a 
closure';
 }
 
+# RT 79166
+{
+    my $rt79166 = *;
+    isa_ok $rt79166, Whatever, 'assignment of whatever still works';
+    $rt79166 = 'RT 79166';
+    #?rakudo todo 'RT 79166'
+    is $rt79166, 'RT 79166', 'assignment to variable with whatever in it';
+}
+
 done_testing;
 
 # vim: ft=perl6

Reply via email to