Sorry, I didn’t get a notification you replied. The problem is that you didn’t declare the default constructor in the header file so Unreal is generating code to define it as well.
In the header you need to declare the constructor
class ATANK : ...
{
ATANK(); // missing
};