Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dusting off this repository #196

Merged
merged 1 commit into from
May 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .mailmap
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Amanda Stjerna <amanda@stjerna.space> <albin.stjerna@gmail.com>
Amanda Stjerna <amanda@stjerna.space> <amanda.stjerna@it.uu.se>
2 changes: 0 additions & 2 deletions inputs/drop-liveness/drop-liveness.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#![feature(nll)]

#[derive(Debug)]
struct Foo<'a> {
data: &'a u32,
Expand Down
2 changes: 0 additions & 2 deletions inputs/enum-drop-access/enum-drop-access.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#![feature(nll)]

enum DropOption<T> {
Some(T),
None,
Expand Down
2 changes: 0 additions & 2 deletions inputs/issue-47680/issue-47680.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#![feature(nll)]

struct Thing;

impl Thing {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
// one of its fields, it is useful to be reminded of the significance
// of the fact that the type implements Drop.

#![feature(nll)]
#![allow(dead_code)]

pub struct S<'a> { url: &'a mut String }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#![allow(warnings)]
#![feature(nll)]

struct Wrap<'p> { p: &'p mut i32 }

Expand Down
2 changes: 0 additions & 2 deletions inputs/smoke-test/polonius-smoke-test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
// ignore-compare-mode-nll
// compile-flags: -Z borrowck=mir -Zpolonius

#![feature(nll)]

fn random() -> bool {
unimplemented!()
}
Expand Down
1 change: 0 additions & 1 deletion inputs/subset-relations/subset-relations.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#![crate_type = "lib"]
#![feature(nll)]

fn missing_subset<'a, 'b>(x: &'a u32, y: &'b u32) -> &'a u32 {
y //~ ERROR
Expand Down
Loading