mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-16 15:24:10 +02:00
12 lines
147 B
Beef
12 lines
147 B
Beef
![]() |
#pragma warning disable 168
|
||
|
|
||
|
using System;
|
||
|
|
||
|
class Foogie<T> where T : IHashable
|
||
|
{
|
||
|
public void Do()
|
||
|
{
|
||
|
T val = default;
|
||
|
val.GetHashCode();
|
||
|
}
|
||
|
}
|