and have it be either refcounted or "classic" depending on the
definition of String. With a user-defined String, you need:
String s = String("abc");
The following works fine: RCString s = "abc";It will call RCString.this with "abc". The problem is passing string literals or slices to functions that receive RCString.
