[pre-RFC] Allowing string literals to be either &'static str or String, similar to numeric literals

Could "x" then possibly desugar into & 'static String?

Where the actual String would be in static data?

Or maybe even into *static_var where static_var has got type & 'static String?