REQUIRED_USE: test unsatisfied without USE dep
diff --git a/pym/portage/tests/resolver/test_autounmask.py b/pym/portage/tests/resolver/test_autounmask.py
index e58a643..9e50be7 100644
--- a/pym/portage/tests/resolver/test_autounmask.py
+++ b/pym/portage/tests/resolver/test_autounmask.py
@@ -47,6 +47,7 @@
 			"app-portage/A-2": { "DEPEND": "app-portage/B[foo=]", "IUSE": "+foo", "REQUIRED_USE": "foo", "EAPI": "4" }, 
 
 			"app-portage/B-1": { "IUSE": "foo +bar", "REQUIRED_USE": "^^ ( foo bar )", "EAPI": "4" }, 
+			"app-portage/C-1": { "IUSE": "+foo +bar", "REQUIRED_USE": "^^ ( foo bar )", "EAPI": "4" },
 			}
 
 		test_cases = (
@@ -179,6 +180,11 @@
 					options = { "--autounmask": True },
 					use_changes = None,
 					success = False),
+				ResolverPlaygroundTestCase(
+					["=app-portage/C-1"],
+					options = { "--autounmask": True },
+					use_changes = None,
+					success = False),
 			)
 
 		playground = ResolverPlayground(ebuilds=ebuilds)