diff --git a/xml/issue4425.xml b/xml/issue4425.xml
new file mode 100644
index 0000000000..dbf6aaf6df
--- /dev/null
+++ b/xml/issue4425.xml
@@ -0,0 +1,67 @@
+
+
+
+
+For data member pointer M C::* dmp, template argument deduction in form
+std::function_ref fr(std::nontype<dmp>, x) results in
+std::function_ref<M&()>, that returns a reference to designated
+member. As accessing a data member can never throw exception and function_ref
+support noexcept qualifed function types, the deduction guide should be
+updated to produce noexcept-qualified signature.
+This wording is relative to Modify Let F be decltype(f).
+-6- Constraint:
+
+
+
+
+template<class F>
+function_ref(nontype_t<f>, T&&) -> function_ref<see below>;
+
+
+
+
+false
+ true, or
+-7- Remarks: The deduced type is function_ref<R(A...) noexcept(E)>. +
+ + + + + + + + + + +