PowerShell/test/powershell/Language/Classes/MSFT_778492.psm1

16 lines
184 B
PowerShell
Raw Normal View History

$foo = 'MSFT_778492 script scope'
class MSFT_778492
{
[string] F()
{
return $script:foo
}
}
function Get-MSFT_778492
{
[MSFT_778492]::new()
}