Evaluate the result of this Java code segment:
char symbol = 'a'; symbol += 3; System.out.println(symbol);
a
d
g
An error occurs