#include "../StormEigen/Sparse" using namespace StormEigen; void call_ref(Ref > a) { } int main() { SparseMatrix A(10,10); #ifdef STORMEIGEN_SHOULD_FAIL_TO_BUILD call_ref(A.row(3)); #else call_ref(A.col(3)); #endif }