<s>
Compilation	B-Error_Name
error	I-Error_Name
refers	O
to	O
a	O
state	O
when	O
a	O
compiler	B-Language
fails	O
to	O
compile	B-Language
a	O
piece	O
of	O
computer	B-Application
program	I-Application
source	O
code	O
,	O
either	O
due	O
to	O
errors	O
in	O
the	O
code	O
,	O
or	O
,	O
more	O
unusually	O
,	O
due	O
to	O
errors	O
in	O
the	O
compiler	B-Language
itself	O
.	O
</s>
<s>
A	O
compilation	B-Error_Name
error	I-Error_Name
message	O
often	O
helps	O
programmers	B-Application
debugging	O
the	O
source	O
code	O
.	O
</s>
<s>
Although	O
the	O
definitions	O
of	O
compilation	B-Language
and	O
interpretation	B-Application
can	O
be	O
vague	O
,	O
generally	O
compilation	B-Error_Name
errors	I-Error_Name
only	O
refer	O
to	O
static	O
compilation	B-Language
and	O
not	O
dynamic	B-Application
compilation	I-Application
.	O
</s>
<s>
However	O
,	O
dynamic	B-Application
compilation	I-Application
can	O
still	O
technically	O
have	O
compilation	B-Error_Name
errors	I-Error_Name
,	O
although	O
many	O
programmers	B-Application
and	O
sources	O
may	O
identify	O
them	O
as	O
run-time	B-Library
errors	I-Library
.	O
</s>
<s>
Most	O
just-in-time	O
compilers	B-Language
,	O
such	O
as	O
the	O
Javascript	B-Language
V8	I-Language
engine	I-Language
,	O
ambiguously	O
refer	O
to	O
compilation	B-Error_Name
errors	I-Error_Name
as	O
syntax	B-Application
errors	I-Application
since	O
they	O
check	O
for	O
them	O
at	O
run	B-Library
time	I-Library
.	O
</s>
<s>
This	O
means	O
that	O
the	O
programmer	B-Application
most	O
likely	O
forgot	O
to	O
include	O
iostream	O
.	O
</s>
<s>
Parse	B-Application
error	I-Application
,	O
e.g.	O
</s>
<s>
An	O
internal	B-Error_Name
compiler	I-Error_Name
error	I-Error_Name
(	O
commonly	O
abbreviated	O
as	O
ICE	O
)	O
is	O
an	O
error	O
that	O
occurs	O
not	O
due	O
to	O
erroneous	O
source	O
code	O
,	O
but	O
rather	O
due	O
to	O
a	O
bug	O
in	O
the	O
compiler	B-Language
itself	O
.	O
</s>
<s>
Using	O
a	O
different	O
compiler	B-Language
or	O
different	O
version	O
of	O
the	O
compiler	B-Language
may	O
solve	O
the	O
issue	O
and	O
be	O
an	O
acceptable	O
solution	O
in	O
some	O
cases	O
.	O
</s>
<s>
When	O
an	O
internal	B-Error_Name
compiler	I-Error_Name
error	I-Error_Name
is	O
reached	O
many	O
compilers	B-Language
do	O
not	O
output	O
a	O
standard	O
error	O
,	O
but	O
instead	O
output	O
a	O
shortened	O
version	O
,	O
with	O
additional	O
files	O
attached	O
,	O
which	O
are	O
only	O
provided	O
for	O
internal	B-Error_Name
compiler	I-Error_Name
errors	I-Error_Name
.	O
</s>
<s>
The	O
additional	O
files	O
attached	O
for	O
internal	B-Error_Name
compiler	I-Error_Name
errors	I-Error_Name
usually	O
have	O
special	O
formats	O
that	O
they	O
save	O
as	O
,	O
such	O
as	O
.dump	O
for	O
Java	B-Language
.	O
</s>
<s>
Example	O
of	O
an	O
internal	B-Error_Name
compiler	I-Error_Name
error	I-Error_Name
:	O
</s>
