12 lines
233 B
C++
12 lines
233 B
C++
#include <fesa/core/diagnostic.hpp>
|
|
|
|
int main()
|
|
{
|
|
const fesa::core::Diagnostic diagnostic{
|
|
fesa::core::Severity::info,
|
|
"core.info",
|
|
"diagnostic"
|
|
};
|
|
return diagnostic.code == "core.info" ? 0 : 1;
|
|
}
|