8 lines
175 B
C++
8 lines
175 B
C++
#include <fesa/model/analysis_step.hpp>
|
|
|
|
int main()
|
|
{
|
|
const fesa::model::AnalysisStep step{fesa::core::StepId{1}, "static"};
|
|
return step.name() == "static" ? 0 : 1;
|
|
}
|