mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-19 00:20:25 +02:00
26 lines
No EOL
244 B
Beef
26 lines
No EOL
244 B
Beef
#pragma warning disable 168
|
|
|
|
using System;
|
|
|
|
class Foogie<T> where T : IHashable
|
|
{
|
|
public void Do()
|
|
{
|
|
T val = default;
|
|
val.GetHashCode();
|
|
}
|
|
}
|
|
|
|
struct Zorbble
|
|
{
|
|
public int mA;
|
|
public void MainMethod()
|
|
{
|
|
|
|
}
|
|
|
|
static void Zoff()
|
|
{
|
|
|
|
}
|
|
} |