// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details #include "Luau/Unifiable.h" #include "Luau/TypeFwd.h" #include "Luau/TypePack.h" namespace Luau { namespace Unifiable { static int nextIndex = 0; int freshIndex() { return ++nextIndex; } template Error::Error() : index(++nextIndex) { } template int Error::nextIndex = 0; template struct Error; template struct Error; } // namespace Unifiable } // namespace Luau