Fix example-

This commit is contained in:
Sönke Ludwig 2019-04-16 12:11:14 +02:00
parent 78158dbae8
commit d72ffacf9e

View file

@ -53,7 +53,7 @@ assert(taggedFoo.isFoo);
assert(taggedAny.isFoo);
// Set to a different type
taggedAny.strValue("bar");
taggedAny.setStr("bar");
assert(taggedAny.isStr);
assert(taggedAny.strValue == "bar");