Briefing Zend Knowledge

What is the result of the following code: <code> classT { const A = 42 + 1; } echo A; </co

What is the result of the following code:
<code>
classT
{
const A = 42 + 1;
}
echo A;
</code>

A.
42

B.
43

C.
Parse error