using System;
Span<int> x = stackalloc int[1];
Test obj = new();
obj.Method(x);
public ref struct Test {
public Span<int> Method(scoped Span<int> values) => values;
}