782eccba47
- replace `proc-macro-error` crate with simplified `common::diagnostic::pollyfill` - migrate `juniper_codegen_tests` to stable Rust Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Kai Ren <tyranron@gmail.com>
9 lines
287 B
Rust
9 lines
287 B
Rust
// TODO: [Object] Type Validation: §4 (interfaces) for objects
|
||
// TODO: [Non-Null] §1 A Non‐Null type must not wrap another Non‐Null type.
|
||
|
||
#[rustversion::stable]
|
||
#[test]
|
||
fn test_failing_compilation() {
|
||
let t = trybuild::TestCases::new();
|
||
t.compile_fail("fail/**/*.rs");
|
||
}
|