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