diff --git a/test/parse.js b/test/parse.js
index 99be301..4e46e40 100644
--- a/test/parse.js
+++ b/test/parse.js
@@ -193,6 +193,11 @@ U=
assert.throws(function () {
parseFixture('__proto__lengthpolluted');
});
+
+ // adding backslash should still be protected.
+ assert.throws(function () {
+ parseFixture('_\_proto_\_lengthpolluted');
+ });
});
});