issues.dlang.org send mail to gmail failure.

test test at gmail.com
Tue Oct 23 05:32:43 UTC 2018


I like to report bugs,  first I hast to create a bug account.  
But I can not get the register email. (I already check my gmail 
Junk and use search)

The bugs is:

import std.traits;

struct FiberS {
	static auto getThis(){
		return Fiber.getId();
	}
}

struct Proxy(T){
  	T* ptr;
     alias getPayload this;

	@property ref auto getPayload() inout return {
		return *ptr ;
	}

     static auto getId(){
         return 1;
     }
}
alias Fiber = Proxy!(FiberS);
struct TcpStream {
    static void test(){
      auto id = Fiber.getThis(); // work here
    }
     void read(ubyte[] data){
            auto id = Fiber.getThis(); // not work here
     }
}


there other one is I can not append element to struct[] with 
betterC enabled. (I can append string and int[] in betterC, why 
not struct)?


And is one more is use stack with betterC:
scope tmp 	= new ubyte[4];





More information about the Digitalmars-d mailing list