On Tuesday, 17 March 2015 at 18:25:00 UTC, Ali Çehreli wrote:
> Strings are fine and fortunately it is very easy to test:
>
> enum arr = [ 1, 2 ];
> enum s = "hello";
>
> void main()
> {
> assert(arr.ptr !is arr.ptr);
> assert(s.ptr is s.ptr);
> }
>
> Ali
Ah, that is good to know. Thanks!