From 2c545eaf8b7cd89757d0eee0964b9f59c8b6724d Mon Sep 17 00:00:00 2001 From: Michel Juillard Date: Tue, 4 Dec 2012 10:46:44 +0100 Subject: [PATCH] adding test case with lagged exogenous variable (currently fails) --- tests/auxiliary_variables/test2.mod | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tests/auxiliary_variables/test2.mod diff --git a/tests/auxiliary_variables/test2.mod b/tests/auxiliary_variables/test2.mod new file mode 100644 index 000000000..5760d8280 --- /dev/null +++ b/tests/auxiliary_variables/test2.mod @@ -0,0 +1,14 @@ +var y; +varexo e; + +model; +y = e + e(-1); +end; + +initval; +y = 1; +end; + +steady; + +model_diagnostics;