Index: src/AST/Expr.hpp
===================================================================
--- src/AST/Expr.hpp	(revision b0d9ff7d1c0e2e2925b14ceb97f88762bde87c64)
+++ src/AST/Expr.hpp	(revision 8bd886e83ef877a2ab3a69217f7d29b068ccb384)
@@ -257,9 +257,8 @@
 public:
 	ptr<Decl> type_decl;
-	ptr<DeclWithType> var;
 	std::string name;
 
-	QualifiedNameExpr( const CodeLocation & loc, const Decl * d, const DeclWithType * r, const std::string & n ) 
-	: Expr( loc ), type_decl( d ), var(r), name( n ) {}
+	QualifiedNameExpr( const CodeLocation & loc, const Decl * d, const std::string & n ) 
+	: Expr( loc ), type_decl( d ), name( n ) {}
 
 	const Expr * accept( Visitor & v ) const override { return v.visit( this ); }
