Wandbox
SettingsLog
SettingsLog
Language
GitHubLogin
Ran/Viewed Log

Author

anonymous

almost 6 years ago

Language

C++

Compiler

clang HEAD 9.0.0 (https://github.com/llvm-mirror/clang.git 6ed0749151866894a67a3e7eefdc1f3a547daa0e) (https://github.com/llvm-mirror/llvm.git a10a70238ace1093cad3adeb94814b422bd1b5c1)

Options
Warnings
Don't Use Boost
C++14
no pedantic

Author

anonymous

almost 6 years ago

$ clang++ prog.cc -Wall -Wextra -std=c++14
prog.cc:3:19: error: constexpr variable 'i' must be initialized by a constant expression
    constexpr int i = 1488*1488*1488;
                  ^   ~~~~~~~~~~~~~~
prog.cc:3:32: note: value 3294646272 is outside the range of representable values of type 'int'
    constexpr int i = 1488*1488*1488;
                               ^
1 error generated.
Exit Code:
1