Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: PyO3/pyo3
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 108a57eaca3307583422c70711a25302594272b5
Choose a base ref
..
head repository: PyO3/pyo3
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: cee1c7e9a2263401267b8c1df9787a98b8eeb5ab
Choose a head ref
Showing with 5 additions and 1 deletion.
  1. +5 −1 tests/test_compile_error.rs
6 changes: 5 additions & 1 deletion tests/test_compile_error.rs
Original file line number Diff line number Diff line change
@@ -32,7 +32,11 @@ fn test_compile_errors() {
t.compile_fail("tests/ui/invalid_pyfunctions.rs");
t.compile_fail("tests/ui/invalid_pymethods.rs");
// output changes with async feature
#[cfg(all(Py_LIMITED_API, feature = "experimental-async", not(diagnostic_namespace)))]
#[cfg(all(
Py_LIMITED_API,
feature = "experimental-async",
not(diagnostic_namespace)
))]
t.compile_fail("tests/ui/abi3_nativetype_inheritance.rs");
#[cfg(not(feature = "gil-refs"))]
t.compile_fail("tests/ui/invalid_intern_arg.rs");