diff --git a/dumux/assembly/fvassembler.hh b/dumux/assembly/fvassembler.hh
index d26121d52cba464655d356239284f1bdf0405378..dddfe595b6da961d84af08cff945f6250cfd8f10 100644
--- a/dumux/assembly/fvassembler.hh
+++ b/dumux/assembly/fvassembler.hh
@@ -51,7 +51,6 @@ template<class TypeTag, DiffMethod diffMethod, bool isImplicit = true>
 class FVAssembler
 {
     using GridView = GetPropType<TypeTag, Properties::GridView>;
-    using GridVariables = GetPropType<TypeTag, Properties::GridVariables>;
     using LocalResidual = GetPropType<TypeTag, Properties::LocalResidual>;
     using Element = typename GridView::template Codim<0>::Entity;
     using TimeLoop = TimeLoopBase<GetPropType<TypeTag, Properties::Scalar>>;
@@ -69,6 +68,7 @@ public:
     using JacobianMatrix = GetPropType<TypeTag, Properties::JacobianMatrix>;
     using FVGridGeometry = GetPropType<TypeTag, Properties::FVGridGeometry>;
     using Problem = GetPropType<TypeTag, Properties::Problem>;
+    using GridVariables = GetPropType<TypeTag, Properties::GridVariables>;
 
     using ResidualType = SolutionVector;