Skip to content
This repository was archived by the owner on May 23, 2024. It is now read-only.

Commit 215c867

Browse files
committed
Merge pull request #66 from ville-h/25050
25050
2 parents 28c121c + ac1a45d commit 215c867

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/25050.rs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
pub trait NBTTypeHelper where Self: NBTType {
2+
type Tagtype = Self;
3+
}
4+
5+
pub trait NBTType {
6+
}
7+
8+
impl NBTTypeHelper for NBTType {
9+
type Tagtype = <Self as NBTTypeHelper>::Tagtype;
10+
}
11+
12+
fn main() {}

0 commit comments

Comments
 (0)