Skip to content

Commit

Permalink
Dusting off this repository
Browse files Browse the repository at this point in the history
- Add a .mailmap redirecting my deadname to my livename
- Remove `#![feature(nll)]`, which is not needed anymore
  • Loading branch information
amandasystems committed May 22, 2024
1 parent 0a754a9 commit 8e1ac04
Show file tree
Hide file tree
Showing 8 changed files with 2 additions and 11 deletions.
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

0 comments on commit 8e1ac04

Please sign in to comment.