Note: This website is archived. For up-to-date information about D projects and development, please visit wiki.dlang.org.

Changeset 839

Show
Ignore:
Timestamp:
01/03/11 03:45:25 (14 years ago)
Author:
braddr
Message:

Switch from the now removed std.boxer to std.variant. It's not clear what this test is actually testing, but it will still build and pass with this change.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/test/runnable/imports/test27a.d

    r553 r839  
    11module imports.test27a; 
    22 
    3 import std.boxer
     3import std.variant
    44 
    55class myClass(T) { 
    66public: 
    77    void func(T v) { 
    8         Box b = std.boxer.box(v); 
     8        Variant b = Variant(v); 
    99    } 
    1010} 
    1111