Use of constexpr function before definition fails

I'm having some trouble with constexpr. The book C++ Primer shows a line of code: constexpr int sz = size(); // only size() is a constexpr function // this code is ri...