PowerShell/test/powershell/Language/Classes/MSFT_778492.psm1
2016-07-20 12:10:12 -07:00

16 lines
184 B
PowerShell

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