1. Home
  2. UE5 Compilation Errors
  3. UE5 C++ Compilation Error...
  4. C2589: ‘token’ – Illegal Token on Right Side of ‘::’

C2589: ‘token’ – Illegal Token on Right Side of ‘::’

What It Means & How to Fix It


🧠 Why You’re Seeing This Error

C2589 is a syntax error that means the compiler found something unexpected on the right-hand side of the :: scope operator — like a variable name instead of a type, or a typo.

In UE5, this often happens when:

  • You try to use Class::Variable, but the variable isn’t static
  • You misuse a macro or write invalid class/namespace syntax
  • You forget to use an enum or static const properly

💥 Example Error Message

error C2589: 'Health': illegal token on right side of '::'

🛠️ Example Code

int32 Value = AMyActor::Health; // ❌ C2589: Health is not static

✅ How to Fix C2589 in UE5 – Step-by-Step


✔️ 1. Don’t Use :: with Non-Static Members

Fix:

AMyActor* Actor = GetWorld()->SpawnActor();
int32 Value = Actor->Health; // ✅ Use `->` or `.` for instance members

✔️ 2. If It’s an Enum or Static Constant, Declare It Properly

If you’re using a class enum or static const, make sure it’s declared and defined correctly.

Wrong:

int32 Mode = EGameMode::Mode1; // ❌ Mode1 not declared properly

Fix:

UENUM()
enum class EGameMode : uint8
{
Mode1,
Mode2
};

✔️ 3. Check for Typos or Misused Namespaces

Sometimes this is just a mistyped class or symbol name that the compiler misinterprets.


✅ Summary: How to Fix C2589 in UE5

CauseFix Example
Using :: with non-static memberUse -> or . with object instances
Enum or constant incorrectly scopedDeclare/define with proper enum syntax
Typos or macro misuseDouble-check class names and token usage
Was this article helpful to you? Yes No

How can we help?