Sign in
dart
/
sdk.git
/
3d19493f2dbbc81d9ef1d1386593d23404c932e3
/
.
/
pkg
/
front_end
/
testcases
/
general
/
ffi_sample.dart.textual_outline_modelled.expect
blob: 2b9a9f64bbb5699115a5a215c80dfaf5151bbffc [
file
] [
log
] [
blame
]
import
"package:ffi/ffi.dart"
;
import
'dart:ffi'
;
class
Coordinate
extends
Struct
{
Pointer
<
Coordinate
>
next
;
@Double
()
double
x
;
@Double
()
double
y
;
factory
Coordinate
.
allocate
(
double
x
,
double
y
,
Pointer
<
Coordinate
>
next
)
{}
}
main
()
{}