What is the value for D to allow assign bool to char/dchar? For me, it must be an error.

apz28 home at home.com
Sat Aug 7 21:45:09 UTC 2021


     void main()
     {
     	dchar d;
     	d = false;
     	d = true;
     	char c;
     	c = false;
     	c = true;
     }



More information about the Digitalmars-d-learn mailing list